/* фон цвет * --------------------------------*/
.expresspay-payment {
    border: 1px solid #183030;
    border-radius: 5px;
    padding: 20px;

/* бордюр цвет ------------------------------*/
    background-color: #F3FAF6;
    display: flex;
    flex-direction: column;
	
    font-style: normal;
    font-weight: normal;
}

.expresspay-payment select {
    width: 100%;
}
/* кнопка цвет -------------------------------*/
.expresspay-payment .confirm_btn {
    background-color: #EBD35B !important;

/* кнопка шрифт цвет -------------------------*/
    color: #183030 !important;
	border: 0 !important;
	min-width: 160px;
    width: initial;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
    font-style: normal !important;
    margin-right: 30px;
}


/* кнопка при наведении ----------------------*/
.expresspay-payment .confirm_btn:hover {
    background-color: #E3BD2C !important;
	border: 0 !important;
}

.expresspay-payment input[type=checkbox], 
.expresspay-payment input[type=radio] {
    border: 2px solid #47AFDC;
}

.expresspay-payment  input[type=radio]:checked,
.expresspay-payment  input[type=checkbox]:checked {
    background-color: #47AFDC;
}

.expresspay-payment  input[type=radio]:after,
.expresspay-payment  input[type=checkbox]:after {
    background: #fff;
	left: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
}





/* цвет заголовка ----------------------*/
.expresspay-payment-header {
    width: 100%;
    display: grid;
    flex-direction: row;
/* заголовок в центре - ставим 0 вместо 220 ----------------------*/
    grid-template-columns: 0px auto;
    color: #183030    
}


.expresspay-payment-header .logo {
    width: 220px;
    margin: 10px;
}

.expresspay-payment-header .desc {
    text-align: center;
    margin: 10px;
}

.expresspay-payment .row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 5px;
    padding: 5px;
}

.expresspay-payment .row .label {
    width: 25%;
    text-align: right;
    margin: auto;
}

.expresspay-payment .row .label label {
    font-size: 17px;
    margin: 15px;
	font-weight: 400;
}

.expresspay-payment .row .field {
    width: 75%;
    margin: 5px;
}

/* цвет бордюра ввода суммы */
.expresspay-payment .row .field input {
    width: 100%;
    border: 1px solid #15383E;
    border-radius: 15px;
}

.expresspay-payment .row .expresspay_payment_method {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 5px;
    border-radius: 6px;    
}

.expresspay-payment .row .expresspay_payment_method label {
    width: 95%;
    font-size: 18px;
    margin-bottom: 0px;
	font-weight: 400;
	padding-left: 15px;
}

#first_step {
    display: block;
}

#second_step {
    display: none;
}

#three_step {
    display: none;
}

#response_step {
    display: none;
}

.expresspay-payment .row.back_link i {
    cursor: pointer;
    font-style: normal;
}

.expresspay-payment .row.back_link i:hover {
    text-decoration: underline;
}

.expresspay-payment .row label {
    font-style: normal;
}

.expresspay-payment-email,
.expresspay-payment-phone {
    display: none;
}

#three_step .table {
    border: 1px solid black;
}

#three_step .table .val,
#three_step .table .desc {
    display: flex;
    justify-content: center;
    padding: 0 5px 0 5px;
    width: 50%;
}

#response {
    display: flex;
    justify-content: center;
    padding: 0 5px 0 5px;
    width: 50%;
}


@media (max-width: 543px) {
	.expresspay-payment-header {
		grid-template-columns: auto;
	}
	.expresspay-payment-header .logo {
		width: auto;
		text-align: center;
	}
	.expresspay-payment .row .label {
		display: none;
	}
	.expresspay-payment .row .field {
		width: auto;
	}
	.expresspay-payment .three_step .table div.row:last-child {
		flex-direction: row;
	}
	.expresspay-payment .secont_step div.row:last-child,
	.expresspay-payment .three_step div.row:last-child {
		flex-direction: column;
	}
	.expresspay-payment .secont_step div.row:last-child .confirm_btn,
	.expresspay-payment .three_step div.row:last-child  .confirm_btn {
		margin-bottom: 20px;
	}
	.expresspay-payment .confirm_btn {
		width: 100%;
		margin-right: 0px;
	}
}