* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    font-family: 'Inter';
    font-style: normal;
}

*::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
    
}

div{
    margin:0;
    padding:0;
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

html,
body {
  position: fixed;
  overflow: hidden;
}

body {
    background-color: #F6F6F6;
    width:100vw;
    height:1000vh;
}

#container{
    display:flex;
    flex-direction: column;
    width:100%;
    height:100%;
}

header{
    height:50px;
    padding:0px 12px;
    background-color: #F6F6F6;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.26);
}

#navbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    width:100%;
    height:100%;
}

#displayModeToggle{
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:24px;
    
}
#toolCount{
    display:flex;
    align-items:center;
    justify-self: center;
    white-space: nowrap;
    padding: 4px 12px;
    max-height: 24px;
    border-radius: 13px;
    background-color:#03A1D0;
    color:#F6F6F6;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.26);

}

#content{
    flex:1;
    display:flex;
    flex-direction: column;
    align-items:center;
    position:relative;
}

#singleMode , #multipleMode{
    height:100%;
    width:100%;
}

#toolContainer{
    display:flex;
    justify-content: center;
    align-items: center;
    padding:12px;     
}
#toolContainer>.card{
    width:40%;
    min-width:343px;
}
#toolsContainer{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding:12px;     
    overflow: hidden;
}
#backToTopButton{
    width:40px;
    height:40px;
    border-radius: 50%;
    position: absolute;
    right:12px;
    bottom:24px;
    transition: all 0.5s;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:12px; 
    background-color: #03A1D050;
}

.card{
    display:flex;
    flex-direction: column;
    height:100%;
    margin:4px;
}

.cardTitle{
    font-size:18px;
    font-weight: bold;
}
.cardDescription{
    font-size:12px;
}
.cardImageContainer{
    border-radius: 12px;
    display: block;
    position: relative;
    padding-top: 66.7%;
    background: black;

}
.cardImage{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

#refetchButtonContainer{
    display:flex;
    justify-content: center;
    position:relative;
    height:100px;
    width:100%;
}
#refetchBell{
    height:24px;
    background-color:#CE0128;
    border-radius: 8px;
    width:100%;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.26);
}
#refetchButton{
    position: absolute;
    top:8px;
    display:flex;
    justify-content: center;
    align-items: center;
    width:50px;
    height:50px;
    border-radius: 50%;
    font-size:16px;
    color:black;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.26);
    background-color:#F1D934;
}

footer{
    background-color: #F6F6F6;
    height:50px;
}

#bottomNavigation{
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
}
.navigationItem{
    flex:1;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:24px;

}
.activeItem{
    background-color:#03A1D0;
    color:#F6F6F6;
}

@media screen and (max-width: 728px) {
    #toolsContainer, #toolContainer{
        display:grid;
        grid-template-columns: 1fr;
    }
    

  }

  #loaderContainer {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    display: none;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #868686;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

.smallLoader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #868686;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

.center{
    display:flex;
    justify-content: center;
    align-items: center;
}
.off{
    display:none;
}
.opacity{
    opacity: 0;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* blue: #03A1D0 ; red: #CE0128 ; yellow: #F1D934 ; white: #F6F6F6*/
