.registration-modal {
    margin: 80px auto;
    width: 350px;
    background: white;
    border: 1px solid #E4E4E5;
    position: relative;
    padding-bottom: 40px;
}
.registration-modal--hidden{
    display: none;
}
.registration-modal__form-title {
    font-weight: bold;
    margin-bottom: 30px;
    padding: 20px 20px 10px;
    text-align: center;
    font-size: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.registration-modal__form-label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}


.registration-modal__form-input {
    display: block;
    width: 100%;
    height: 33px;
    padding: 6px 12px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}

.registration-modal .help-block{
    margin-bottom: 18px;
    min-height: 19px;
}


.registration-modal__form-submit{
    padding: 12px;
    min-width: 155px;
    color: #E20932;
    border: 1px solid #E20932;
    font-weight: bold;
    cursor: pointer;
    transition: 200ms ease;
    display: inline-block;
    width: auto;
}
.registration-modal__form-submit:hover{
    background: #E20932;
    color: #fff;
}
.registration-modal__form-group{
    padding: 0 20px;
}
.registration-modal__form-group--submit{
    text-align: center;
    padding-top: 20px;
}

.registration-modal__additional{
    padding: 0 20px;
    margin: 35px 0 5px;
    text-align: center;
}
.registration-modal__to-login{
    color: #E20932;
    display: inline-block;
}
.registration-modal__to-login:hover{
    text-decoration: underline;
}
.registration-modal .arcticmodal-close{
    position: absolute;
    right: 10px;
    top: 2px;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.4;
    transition: 200ms ease all;
}
.registration-modal .arcticmodal-close:hover{
    opacity: 1;
}


.registration-modal__checkbox{
    position: relative;
    bottom: 8px;

}

.registration-modal__checkbox.has-error{
    color: red;
}

.registration-modal__checkbox-icon{
    width: 20px;
    height: 20px;
    border: 1px solid #E20932;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    top: 13px;
    margin-right: 5px;
}

.registration-modal__checkbox-link{
    color: #E20932;
}
.registration-modal__checkbox-link:hover{
    text-decoration: underline;
}


.registration-modal__checkbox-input:checked + .registration-modal__checkbox-label .registration-modal__checkbox-icon {
    background: url(./images/check.png) no-repeat;
    background-position: center;
    background-size: 80%;
}
.registration-modal__checkbox-input{
    display: none;
}
.registration-modal__checkbox-link{
    text-decoration: underline;
}
.registration-modal__checkbox-link:hover{
    text-decoration: none;
}

@media screen and (max-width: 767px){
    .registration-modal{
        width: 100%;
    }
}