@import 'main-font.css';

@-webkit-keyframes fadeIn {0% {opacity: 0.8;} 100% {opacity: 1;}}
@-moz-keyframes fadeIn {0% {opacity: 0.8;} 100% {opacity: 1;}}
@-ms-keyframes fadeIn {0% {opacity: 0.8;} 100% {opacity: 1;}}
@-o-keyframes fadeIn {0% {opacity: 0.8;} 100% {opacity: 1;}}
@keyframes fadeIn {0% {opacity: 0.8;} 100% {opacity: 1;}}

@-webkit-keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}
@-moz-keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}
@-ms-keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}
@-o-keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}
@keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}

@-webkit-keyframes zoomIn {0% {-webkit-transform: scale(0.9, 0.9);} 100% {-webkit-transform: scale(1,1);}}
@-moz-keyframes zoomIn {0% {-moz-transform: scale(0.9, 0.9);} 100% {-moz-transform: scale(1,1);}}
@-ms-keyframes zoomIn {0% {-ms-transform: scale(0.9, 0.9);} 100% {-ms-transform: scale(1,1);}}
@-o-keyframes zoomIn {0% {-o-transform: scale(0.9, 0.9);} 100% {-o-transform: scale(1,1);}}
@keyframes zoomIn {0% {transform: scale(0.9, 0.9);} 100% {transform: scale(1,1);}}

@-webkit-keyframes hideContainer {0% {opacity: 1;-webkit-transform-transform: scale(1, 1);}75% {-webkit-transform-transform: scale(0.95 ,0.95);}100% {opacity: 0;}}
@-moz-keyframes hideContainer {0% {opacity: 1;-moz-transform: scale(1, 1);}75% {-moz-transform: scale(0.95 ,0.95);}100% {opacity: 0;}}
@-ms-keyframes hideContainer {0% {opacity: 1;-ms-transform: scale(1, 1);}75% {-ms-transform: scale(0.95 ,0.95);}100% {opacity: 0;}}
@-o-keyframes hideContainer {0% {opacity: 1;-o-transform: scale(1, 1);}75% {-o-transform: scale(0.95 ,0.95);}100% {opacity: 0;}}
@keyframes hideContainer {0% {opacity: 1;transform: scale(1, 1);}75% {transform: scale(0.95 ,0.95);}100% {opacity: 0;}}

.zoomin
{
    -webkit-animation: zoomIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -moz-animation: zoomIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -ms-animation: zoomIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -o-animation: zoomIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    animation: zoomIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.fadeout
{
    -webkit-animation: fadeOut 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -moz-animation: fadeOut 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -ms-animation: fadeOut 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -o-animation: fadeOut 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeOut 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
} 
.fadein 
{
    -webkit-animation: fadeIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -moz-animation: fadeIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -ms-animation: fadeIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    -o-animation: fadeIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeIn 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-container-hide 
{
    -webkit-animation: hideContainer 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-animation: hideContainer 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    -ms-animation: hideContainer 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    -o-animation: hideContainer 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: hideContainer 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-wrapper > *
{
    font-family: 'Segoe UI Regular';
}

.modal-wrapper
{
    position: absolute;
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 1090;
    left: 0;
    background-color: #ff5e6998;
}

.modal-header
{
    text-align: center;
    border: 0;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px 4px 0 0;
    font-size: 20px;
    position: relative;
}

.modal-footer
{
    border: 0;
    padding: 20px;
    text-align: center;
    color: #996669;
    background-color: #ffffff;
    border-radius: 0 0 4px 4px;
    font-size: small;
}
.modal-footer a
{
    cursor: pointer;
    color: #6b0008;
    text-decoration: none;
}
.modal-footer a:hover
{
    text-decoration: underline;
}

.modal-container
{
    z-index: 1090;
    text-align: center;
    width: 375px;
    height: auto;
    border-radius: 4px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.modal-container form 
{
    background-color: #f6e4e5;
    padding: 25px 30px;
    color: #996669;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}
.modal-container .input-padding:last-child
{  
    margin-top: auto;
    position: relative;
    
}
.modal-container .input-padding:last-child input
{
    cursor: pointer;
}
.modal-container .input-padding:last-child input:focus
{
    outline: none !important;
}

.loading-btn
{
    cursor: not-allowed !important;
    background-image: url("../images/loading.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: 65%;
    background-size: 25px;
    opacity: 0.85;
}


.modal-container form input
{
    display: block;
    margin: 0 auto;
    border: none;
    width: 100%;
    padding: 18px 15px;
    border-radius: 4px;
    text-align: center;
}

.modal-header i
{
    clear: both;
    right: 50px;
    font-size: 15px;
    position: absolute;   
    cursor: pointer;
}


.modal-container form label
{
    font-size: small;
    float: left;
    padding: 5px;
    vertical-align: middle;
}

.inline
{
    display: inline !important;
    margin-right: 5px !important;
    width: auto !important;
}

.modal-submit:hover
{
    background-color: #52050a;
}
.modal-submit
{
    background-color: #66050c;
    font-family: 'Segoe UI Bold', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-size: 1rem;
}

@media only screen and (min-width: 1440px) {

    .modal-header 
    {
        font-size: 1.3rem !important;
    }

    .modal-container
    {
        width: 475px;
    }

    .modal-header i
    {
        font-size: 20px;
    }

    .modal-container form 
    {
        min-height: 500px;
    }

    .modal-footer,
    .modal-footer a
    {
        font-size: 1.2rem;
    }

    .modal-container form input
    {
        padding: 24px 21px; 
        font-size: 1.2rem;
    }

}

.input-padding 
{
    padding: 5px;
    position: relative;
}

.modal-login, .modal-signup {display: none;}

.error_input
{
    margin-top: -4px !important;
    border: 2px solid #e21f2c !important;
}

.error-alert
{
    display: none;
    font-family: 'Segoe UI Regular';
    font-size: 13px;
    text-align: center;
    box-sizing: border-box;
    padding: 12px 16px;
    line-height: 1.5;
    background: #d83e3e;
    color: #fff;
    border-radius: 0;
}

.requirements 
{
    display: none;
    border-radius: 4px;
    list-style: none;
    position: absolute;
    background-color: #fff;
    top: 110%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 20000;
    color: black;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none; 
    background-color: #eeeeee;
}

.requirements p
{
    background-color: #74171d;
    color: white;
    padding: 10px;
    font-family: 'Segoe UI Bold';
    border-radius: 4px;
}
.requirements i
{
    color: #666666;
    margin-right: 15px;
    position: absolute;
    left: 10px;
}
.requirements li 
{
    display: inline-block;
}

.requirements::before 
{
    content: '';
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #eeeeee; 
    position: absolute;
    right: 10px;
    top: -15px;
}