@import url('https://fonts.googleapis.com/css2?family=Coiny&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
    font-family: "Montserrat", sans-serif;
}
/***** GENERAL *****/
.fullscreen { /*use for page with center middle div*/
    width: 100vw;
    min-height: 100dvh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}
#logToMetaverse{
    background-image: url('https://mitoworld.io/metaverse/monkiddo/assets/yellow-dots.png');
    background-size: cover;
    background-position: 0%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.hide{
    display: none!important;
}
/* COLOUR */
.yellow-bg{
    background-color: #FEC472;
    border-radius: 25px;
    border: 5px solid #0F1221;
    padding: 16px;
    margin-bottom: 25px;
}
.white-bg{
    background-color: #FFFFFF;
    border-radius: 25px;
    padding: 30px 54px;
}
.black{
    color: #000;
}
/* Spacing */
.py-80{
    padding-top: 80px;
    padding-bottom: 80px;
}
.px-50{
    padding-right: 50px;
    padding-left: 50px;
}
.mb-24{
    margin-bottom: 24px!important;
}
.monsterAtWork{
    width: 100%;
}
.mon-container{
    min-width: 700px;
}
.flex-container{
    display: flex;
}
.hide-on-desktop{
    display: none;
}
@media only screen and (max-width: 600px) {
    .fullscreen{
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .white-bg{
        padding: 25px;
    }
    .px-50{
        padding-right: 20px;
        padding-left: 20px;
    }
    .mon-container{
        min-width: 50%;
    }
    .hide-on-mobile{
        display: none;
    }
    .hide-on-desktop{
        display: block;
    }
}
/* FONT - TEXT */
span.black-link{
    color: #000!important;
    cursor: pointer;
    text-decoration: underline;
}
span.black-link:hover{
    color: #FEC472!important;
    text-decoration: none;
}
.text-16{
    font-size: 16px;
    line-height: 24px;
}
.medium{
    font-weight: 500;
}
.center{
    text-align: center;
}
.at-right{
    text-align: right;
}
.justify{
    text-align: justify;
}
/***** BUTTON *****/
.btn{
    font-family: "Coiny", system-ui;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    padding: 15px 22px;
    min-width: 150px;
}
.done-btn{
    color: #1F1D1E;
    border-radius: 49px;
    background-color: #FED24F;
    border: 5px solid #1F1D1E;
}
.done-btn:hover {
    color: #fff;
    background-color: #FEC472;
}
/***** MODAL *****/
.popup-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgba(0, 0, 0, 0.4); */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s visibility ease-in, opacity 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}
.popup-container.show {
    visibility: visible;
    opacity: 1;
}
.popup {
    width: 60vw;
    max-height: 90vh;
    border-radius: 25px;
    background-color: #fff;
    border: 5px solid #0F1221;
}
header.cc-popup {
    padding: 20px 20px 0;
    display: flex;
    justify-content: right;
    align-items: center;
}
main.cc-popup {
    padding:  0 43px 50px;
    display: flex;
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
}
main .title{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 24px;
}
/**************************************CUSTOM FORM****************************************/
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
.cf-fields {
    grid-column-gap: 2%;
    -ms-grid-columns: (1fr 2%) (12);
    grid-row-gap: 32px;
    display: grid !important;
    grid-template-columns:repeat(12, 1fr);
    grid-template-rows:repeat(auto-fill, auto);
}
.cf-field-wrapper{
    grid-column: 1 / -1;
    min-width: 0;
    position:relative;
}
.full-row{
    grid-column: span 12;
}
input.cf-field {
    color: rgba(0, 0, 0, 0.3);
    font-family: "Montserrat", serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 100%;
    margin-top: 8px;
    border: 5px solid #0F1221;
    border-radius: 17px;
    padding: 16px 25px;
    width: 100%;
    background-color: transparent;
}
input.cf-field.invalid{
    border: 5px solid #DA9C9C!important;
    background-color: #FFF6F6!important;
}
input.cf-field:focus {
    border: 5px solid #FEC472!important;
}
/* input.cf-field:focus-visible{
    border: unset!important;
} */
input:-internal-autofill-selected{
    background-color: transparent!important;
}
/* tnc question */
.cf-checkbox{
    border: 2px solid #0F1221!important;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
label.checkbox-label{
    display:inline-block;
    vertical-align: super;
    font-family: "Montserrat", serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
}
/* user role question */
.cf-label {
    font-family: "Montserrat", serif;
    display: block;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 0px;
}
/* .cf-btn-wrapper{
    display: flex;
    justify-content: end;
    gap: 10px;
} */
::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}
/* FONT-TEXT */
.error-text {
    color: #A82525;
    font-size: 16px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    margin-top: 8px;
}
#main_error_container{
    border: 5px solid #DA9C9C;
    border-radius: 17px;
    padding: 16px;
    background: #FFF6F6;
}
 .warning{
    color: #A82525!important;
    font-size: 16px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    margin-top: 8px;
 }
 .check{
    color: #0DB04E!important;
 }
@media only screen and (max-width: 600px) {
    
}
/* custom form css END */