body,html {
    margin:0;
    padding:0;
    font-family: Montserrat;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Scroll bar [START] */
    ::-webkit-scrollbar {
        width: 6px;
    }

    @media (max-width:600px) {
        ::-webkit-scrollbar {
            height: 6px;
        }
    }

    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px rgb(255, 255, 255, 0); 
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: #c3c3c3; 
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #a5a5a5;
    }
/* Scroll bar [END] */

/* MainBTN [ START ]*/
.MainBTN, .MainBTNDisabled {
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: white;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    justify-content: center;
    line-height: 1.25;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
    text-align: center;
}

.MainBTNGreen:hover,.MainBTNGreen:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.MainBTN {
    cursor: pointer;
}

.smallMainBTN {
    padding: 5px;
    height: fit-content;
    min-height: fit-content;
    display: flex;
    font-size: 12px;
}

.filterMainBTN {
    padding: 5px;
    height: fit-content;
    min-height: fit-content;
    display: flex;
    font-size: 16px;
}


.MainBTN:hover,.MainBTN:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.MainBTN:hover {
    transform: translateY(-1px);
}

.MainBTN:active {
    background-color: #F0F0F1;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: rgba(0, 0, 0, 0.65);
    transform: translateY(0);
}

/* - de 800px */
@media (max-width: 800px) {
    .MainBTN {
        font-size: 14px;
    }
}

/* - de 600px */
@media (max-width: 600px) {
    .MainBTN {
        font-size: 13px;
    }
}

/* - de 500px */
@media (max-width: 500px) {
    .MainBTN {
        font-size: 12px;
    }
}

/* - de 400px */
@media (max-width: 400px) {
    .MainBTN {
        font-size: 11px;
    }
}

/* MainBTN [ END ]*/

#page-container {
    margin-bottom: 60px;
    min-height: 80vh;
}

/* POPUP [START] */

.popContainer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background:#00000050;
}

.popContent {
    padding: 10px;
    background: white;
    border-radius: 20px;
    display: flex;
    justify-content: flex-end;
    max-width: 500px;
}

.popCloseBTN {
    cursor:pointer;
    position: fixed;
    width: 25px;
    height: 25px;
    background: black;
    display: flex;
    padding: 10px;
    color: white;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 10px;
}
/* POPUP [END] */

/* linearLoading [START] */
  .linearLoading {
    width: 100%;
    height: 5px;
    background: lightgrey;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  .linearLoading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 5px;
    background: #002;
    border-radius: 10px;
    z-index: 1;
    animation: linearLoadingAnimation 0.6s alternate infinite;
  }
  
  @keyframes linearLoadingAnimation {
    0% {
      left: -25%;
    }
    100% {
      left: 70%;
    }
    0% {
      left: -25%;
    }
  }

/* linearLoading [END] */


.cancelShake {
    animation: ShakeAnimation 0.7s;
}


.cancelShake .linearLoading {
    background :  #b54242;
}

.successShake {
    animation: ShakeAnimation 0.7s;
}

.successShake .linearLoading {
    background :  #3cc42f;
}

@keyframes ShakeAnimation {
    0% {
        rotate : 0deg;
    }
    20% {
        rotate : 3deg;
    }
    40% {
        rotate : -3deg;
    }
    100% {
        rotate : 0deg;
    }
}