

html {
    width: 100%;
overflow-x: hidden;
}

body {
    background-color: black;
    margin-bottom: 180px;
    width: 100%;
}

header {
    margin: 57px auto;
    margin-bottom: 80px;
    width: 95%;
}

.logo {
    margin: 0 auto;
    width: 517px;
    padding-bottom: 55px;
}

.logo-text  {
    font-family: 'Open Sans';
    font-size: 24px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
}

form {
    margin: 0 auto;
    width: 95%;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button, .dropdown {
    max-width: 360px;
    width: 50%;
    margin: 30px auto;
    padding: 10px 0;
    border-width: 1px;
    border-color: white;
    border-radius: 5px;
    font-size: 22px;
    text-align: center;
    color: white;
    background-color: rgba(255, 255, 255, 0.152);
}

.button:hover {
    cursor: pointer;
}

.dropdown p {
    width: 100%;
}

a {
    text-decoration: none;
}

a:visited {
    display: block;
    text-decoration: none;
	color: white;
}

.dropdown-content a {
    font-size: 79%;
}

.col p{
    margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 0.604);
}

.dropdown-item {
    display: none;
}

.button p, .dropdown-item {
    display: block;
    width: 100%;
    font-size: 80%;
    text-align: center;
    color: white;
    padding: 7px 0;
    word-wrap: break-word;
}

.corp-clients {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropdown-content {
    font-family: 'Open Sans';
    width: 100%;
    margin-top: 10px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    z-index: 1;
    border: 1px solid white;
}

.dropdown-content p {
    text-wrap: wrap;
    width: 100%;
    display: inherit;
    padding: 20px 10px;
    color: black;
    border-bottom: 1px solid gray;
    white-space: pre-wrap;
}

.dropdown-content p:hover {
    background-color: rgb(180, 179, 179);
}

.button:hover {
    background-color: black;
}


.flexbox {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}


.online-reg {
    margin: 0 auto;
    display: none;
    width: 100%;
}

.detailing-form,
.shinomotash-form{
    display: none;
    flex-direction: column;
    justify-content: center;
}
.detailing-form form,
.shinomotash-form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detailing-form input,
.shinomotash-form input {
    height: 52px;
    font-size: 18px;
}

.detailing-form input.error,
.shinomotash-form input.error {
    border-color: red;
}

.detailing-form .send_form,
.shinomotash-form .send_form {
    height: 52px;
}

.detailing-form p,
.shinomotash-form p {
    margin-top: -7px;
}


.personal_data {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin: 0 auto;
    max-width: 360px;
    width: 50%;
}

.agr_checkbox {
    border: 1px solid white;
    border-radius: 25%;
    height: 21px;
    min-width: 21px;
}

.personal_data label {
    display: block;
    color: white;
    margin: auto;
    margin-left: 10px;
}

.personal_data a{
    color: rgba(255, 255, 255, 0.74);
}

.send_form:disabled {
    background-color: rgba(255, 255, 255, 0.050); 
    border-color: rgba(255, 255, 255, 0.50);
}

.send_form:disabled p {
    color: rgba(255, 255, 255, 0.604);
}

#MV_popup_window {
    font-family: "Open Sans";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
}

#MV_popup_window.active { 
    opacity: 1;
    pointer-events: all; 
    transition: 0.5s all;
}

.MV_popup {
    border-radius: 5px;
    padding: 50px;
    padding-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: 400px;
    transition: 0.5s all;
}

.MV_popup h1 {
    font-size: 26px;
    padding-bottom: 12px;
}

.MV_popup svg {
    position: absolute;
    right: 10px;
    top: 10px;
}

.MV_popup svg:hover {
    cursor: pointer;
}


.MV_popup.active {
    transform: translate(-50%, -50%) scale(1);
    transition: 0.5s all;
}

.MV_button {
    font-family: "Open Sans";
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    width: 125px;
    height: 48px;
    color: black;
    background-color: white;
    border: 0.8px solid rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-align: center;
}

.MV_button:hover  {   
    color: #fff;
    background-color: black;
}

.detailing-form-service-wrap{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto 30px;
}
    .detailing-form-service-wrap select{
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        border: 1px solid #fff;
        padding: 10px;
        background: rgba(255, 255, 255, 0.152);
        border-radius: 5px;
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 22px;
        cursor: pointer;
        outline: none!important;
    }
        .detailing-form-service-wrap select option{
            background: #272727;
        }
    .detailing-form-service-wrap input{
        position: relative;
        display: none;
        width: 100%;
        height: auto;
        border: 1px solid #fff;
        padding: 10px;
        background: rgba(255, 255, 255, 0.152);
        border-radius: 5px;
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 22px;
        cursor: pointer;
        outline: none!important;
        margin-top: 15px;
    }
    .head{
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        color: #fff;
        text-align: center;
        font-size: 22px;
        line-height: 24px;
        font-weight: 500;
        margin-bottom: 15px;
    }



@media (max-width: 770px) {
    header {
        width: 50%;
        margin: 20px auto;
    }
    .logo {
        padding-bottom: 20px;
    }
    .logo-text  {
        font-size: 18px;
        margin-bottom: 0;
    }

    .button, .dropdown {
        max-width: 1000px;
        margin: 15px auto;
        width: 80%;
        height: 52px;
    }

    .personal_data {
        max-width: 1000px;
        width: 80%;
        margin: 15px auto;
    }

    .button p {
        font-size: 70%;
    }

    #end {
        margin-top: 0px;
    }

    .container {
        width: 100%;
    }

    .dropdown-content {
        margin-top: 10px;
    }

    .dropdown-item {
        min-height: 42px;
    }

    .col p {
        line-height: 14px;
    }

    .dropdown-content p {
        padding: 15px;
    }

    .detailing-form p,
    .shinomotash-form p {
        margin-top: -5px;
    }

    .detailing-form input,
    .shinomotash-form input {
        font-size: 16px;
    }

    .MV_popup{
        width: 70%;
    }

    .MV_popup h1{
        font-size: 20px;
    }

}