
/*========================================
	Подложка
  ========================================*/
.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity ease 0.5s;
    -o-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}


/*========================================
	Попапы
  ========================================*/
.popup {
    position: fixed;
    top: 50%;
    left: -2000px;
    z-index: 12;
    width: 100%;
    max-width: 620px;
    background-color: #fff;
    border: 1px solid #cacaca;
    border-radius: 15px;
    padding: 33px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.popup.active {
    left: 50%;
}

.popup__close {
    position: absolute;
    top: 40px;
    right: 27px;
    width: 20px;
    height: 20px;
    background: url(../img/icon/close.png) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.popup__title {
    /*font-family: 'robotomedium';*/
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 35px;
}

.popupForm {
    text-align: center;
}

.popupForm textarea {
    width: 100%;
    height: 160px;
    /*font-family: 'robotolight';*/
    font-size: 0.875rem;
    margin-bottom: 30px;
}

.popup__button {
    padding: 0 50px;
}

.attention {
    max-width: 423px;
}

.popup__desc {
    max-width: 300px;
    font-size: 0.875rem;
    margin-bottom: 50px;
}

.attention__button {
    display: block;
    margin: 0 auto;
}

.popupAddPatricipant .popup__desc {
    max-width: 490px;
    margin-bottom: 20px;
}

.popupAddPatricipant__table {
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.popupAddPatricipant__table th, .popupAddPatricipant__table td {
    border-bottom: 1px solid #d1d1d1;
    padding: 15px 0;
}

.popupAddPatricipant__table th:nth-child(3) {
    text-align: center;
}

.popupAddPatricipant__table td:nth-child(1) {
    width: 277px;
}

.popupAddPatricipant__table td:nth-child(2) {
    width: 210px;
}

.popupAddPatricipant__table td:nth-child(3) {
    text-align: center;
}

.popupAddPatricipant__checkboxLabel {
    cursor: pointer;
}

.popupAddPatricipant__checkboxLabel .registrationCheckBox {
    margin: 0;
}

.popup__button {
    display: block;
    margin: auto;
}
