/* bottom bar */

.bottom-footer-fixed-cen, .bottom-footer-fixed-cen *{
    all: unset;
}

.bottom-footer-fixed-cen *{
    font-size: 14px;
}

.bottom-footer-fixed-cen{
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    padding: 5px 0;
    width: 100%;
    text-align: center;
    color: #eee;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 2;
}

.bottom-footer-fixed-cen #privacyLink2, .bottom-footer-fixed-cen #termsLink2, .bottom-footer-fixed-cen .support-link-item{
    text-decoration: none;
    cursor: pointer;
    color: #eeeeee;
}

.bottom-footer-fixed-cen #privacyLink2:hover, .bottom-footer-fixed-cen #termsLink2:hover, .bottom-footer-fixed-cen .support-link-item:hover{
    text-decoration: underline;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    #privacyLink2, #termsLink2, .support-link-item{
        color:white!important;
    }
}

/* bottom bar */

#support, #support *{
    all: unset;
}

#support{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    z-index: 3;
}

#support>.wrap{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);;
    max-width: 768px;
    max-height: 600px;
    width: calc(100vw - 80px);
    height: calc(100vh - 80px);
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    -webkit-box-shadow: 0px 0px 3px #eee;
    -moz-box-shadow: 0px 0px 3px #eee;
    box-shadow: 0px 0px 3px #eee;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 2;
    overflow: auto;
}

#support>.wrap>h1{
    display: block;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    color: #667174;
}

#support>.wrap>.close{
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 25px;
    cursor: pointer;
}

#support>.wrap>p{
    display: block;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
}

#support>.wrap>.formWrap{
    display: block;
}

#support>.wrap>.formWrap>.inputHolder{
    display: block;
    margin: 15px 0;
}

#support>.wrap>.formWrap>.inputHolder>label{
    display: inline-block;
    width: 150px;
    font-size: 15px;
}

#support>.wrap>.formWrap>.inputHolder>input{
    display: inline-block;
    border-bottom: 1px solid #ccc;
    width: 100%;
    max-width: 235px;
    padding: 5px 0;
    line-height: 2.15;
    font-size: 15px;
}

#support>.wrap>.formWrap>.inputHolder>textarea{
    display: inline-block;
    border-bottom: 1px solid #ccc;
    width: 100%;
    max-width: 450px;
    padding: 5px 0;
    height: 40px;
    line-height: 2.15;
    resize: auto;
    font-size: 15px;
}

#support>.wrap>.button-search{
    display: block;
    background: #D72020;
    color: #fff;
    border: 1px solid #D72020;
    border-radius: 22px;
    font-size: 16px;
    padding: 12px 23px;
    text-align: center;
    white-space: nowrap;
    margin: 20px auto;
    cursor: pointer;
}

#support>.wrap>#messagereceived{
    display: none;
    color: #46D844;
    text-align: center;
}

#support>.wrap>#invalidmailmessage{
    display: none;
    color: red;
    text-align: center;
}

@media screen and (max-width: 767px){
    #support>.wrap{
        position: fixed;
        left: 0;
        top: 0;
        transform: translate(0, 0);
        width: calc(100vw - 60px);
        height: calc(100vh - 60px);
        max-width: calc(100vw - 60px);
        max-height: calc(100vh - 60px);
        padding: 30px;
        border-radius: 0px;
    }
    #support>.wrap>.formWrap>.inputHolder>textarea{
        max-width: 235px;
    }
    #support>.wrap>.close {
        position: absolute;
        top: 3px;
        right: 8px;
        font-size: 26px;
    }
}

@media screen and (max-width: 399px){
    .bottom-footer-separator{
        display: none;
    }

    .privacy-link-item, .terms-link-item, .support-link-item{
        float: left;
        margin: 0 4%;
        width: calc(76% / 3);
    }
}