/************************** FONT FACE **************************/

@font-face {
    font-family: 'montserrat-regular';
    src: url('../assets/fonts/montserrat-regular.ttf'); 
}

@font-face {
    font-family: 'montserrat-bold';
    src: url('../assets/fonts/montserrat-bold.ttf'); 
}

@font-face {
    font-family: 'AIAEverest-bold';
    src: url('../assets/fonts/AIAEverest-Bold.otf'); 
}

@font-face {
    font-family: 'AIAEverest-Condensed';
    src: url('../assets/fonts/AIAEverest-Condensed.otf'); 
}

@font-face {
    font-family: 'AIAEverest-CondensedMedium';
    src: url('../assets/fonts/AIAEverest-CondensedMedium.otf'); 
}

@font-face {
    font-family: 'AIAEverest-Medium';
    src: url('../assets/fonts/AIAEverest-Medium.otf'); 
}

* {
    font-family: 'montserrat-regular'
}

/**************************** HTML BODY *****************************/

html, body {
    padding: 0px;
    margin: 0px;
}

body{
    overflow: overlay;
}

/**************************** BOX *****************************/

#box {
    padding: 10px 0px;
}

/**************************** CAPSULE *****************************/

#capsule {
    display: grid;
    row-gap: 15px;
    margin-top: 30px;
    padding: 0px 25px;
}

@media only screen and (min-width: 350px) {
    #capsule {
        justify-content: center
    }
}

#capsule>.block>button {
    width: 100%;
}

@media only screen and (min-width: 350px) {
    #capsule>.block>button {
        width: 300px;
    }
}

/**************************** SESSION TITLE *****************************/

#session-title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background-color: #dd00a2;
    color: white;
    text-transform: uppercase;
    padding: 15px 0px;
}

/**************************** TEXT COLOR *****************************/

.text-pink {
    color: #dd00a2;
}

/**************************** BUTTON *****************************/

.fixed-button{
    position: fixed;
    top: 2vh;
    left: 2vw;
    display: none;
    z-index: 90;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap:12px;
}

#homeButton{
    display: none;
    cursor:pointer;
}

button.pink-gradient {
    color: white !important;
    background-image: linear-gradient(#da33c9, #e20364);
    border: 1px solid white;
    box-shadow: 1px 1px 6px grey;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    border: none;
    border-radius: 50px !important;
    min-width: 140px;
    padding: 5px 40px;
}

button.pink-gradient>i {
    margin-left: 10px;
}

button.pink-gradient:disabled {
    opacity: 0.3;
    filter: grayscale(100%);
    box-shadow: none;
}

button.purple-gradient {
    color: white !important;
    background-image: linear-gradient(#c27ff6, #1e1ab6);
    border: 1px solid white;
    box-shadow: 1px 1px 6px grey;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    border: none;
    border-radius: 50px !important;
    min-width: 140px;
    padding: 5px 40px;
}

/************************** BOOSTRAP **************************/

.btn-primary {
    background-color: #f11122 !important;
}


/************************** BOOSTRAP MODAL **************************/

.modal-header {
    border-bottom: 0 none;
    font-size: 18px;
    font-weight: 500;
}

.modal-body {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight:100;
}

.modal-content {
    border: 0px solid rgba(0,0,0,.2);
}


.modal-footer {
    border-top: 0 none;
}

.modal-footer { 
    display: grid;
    justify-content: center;
}

.modal-footer button {
    padding: 5px 20px;
}

/************************** BUTTON **************************/

button {
    text-transform: uppercase;
    font-weight: 700 !important;
    border: 0px !important;
}

button:hover {
	color: white !important;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
  }

/************************** POP UP BOX **************************/
  .popUpBox {
    background-color: rgb(239 238 238 / 90%);
    display: inline-block;
    position: absolute;
    color: black;
    text-align:center;
    position: absolute;
    z-index: 200;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 100px);
    max-width: 70%;
    max-height: calc(88%);
    display: none;
    border: 1px solid lightgrey;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 10%);
    min-width: 65vw;
    padding: 6%;
    font-size:1.9rem;
    font-weight: 600;
}

.popUpBox>.closeModal {
    top: -21px;
    right: -20px;
    position: absolute;
    width: 2.5rem;
    color: #524e4e;
    cursor:pointer;
}

@media only screen and (max-width: 1000px) {
    .popUpBox {
        font-size:1rem;
    }
    .popUpBox>.closeModal {
        top: -17px;
        right: -10px;
        width: 2.5rem;
    }
}

@media only screen and (max-height: 400px) {
    .popUpBox {
        font-size:1rem;
    }
    .popUpBox>i {
        top: -17px;
        right: -10px;
        font-size: 2.5rem;
    }
}

#modal-bg{
    display:none;
    opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

#close-modal-bg{
    display:none;
    opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

#closeBox, #popUpBoxModal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

/************************** SHADOW BACKGROUND **************************/

.shadow-background{
    background-color: rgb(251 251 251 / 72%);
    display: inline-block;
    position: absolute;
    color: #000000cc;
    display:none;
    z-index: 5;
    text-align: center;
    padding: 0.5% 1%;
}

.shadow-background > ul{
    list-style-type: none;
    padding: 0%;
    margin: 0%;
    width: 100%;
}

.shadow-background > ul li{
    cursor:pointer;
    position:relative;
    padding: 5px 0px;
}

.shadow-background > ul li:after{
    content: '';
    border-bottom: 1px solid;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0px;
}

.shadow-background > ul li:last-child:after{
    width: 0%;
}
