
@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400,500,600,700,800&display=swap&subset=cyrillic');

.enot_module {
    /* padding: 20px; */
}

.enot_module .user_data {
    text-align: left;
    padding: 15px 20px;
    background: #f4f6f6;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}

.user_data input[type="text"] {
    padding: 5px 10px;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
}

.enot_module input[type="radio"] {
    display: none;
}

.enot_module .payment_methods label {
    display: block;
    cursor: pointer;
    padding: 8px 20px;
    margin-bottom: 5px;
    line-height: 25px;
    text-align: left;
    /* border-left: 5px solid #f4f6f6; */
    /* background-color: hsl(180deg 10% 96%); */
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.enot_module .payment_methods label:hover {
    box-shadow: 0 1px 6px #0000001a;
}

.enot_module .payment_methods label:before {
    content: "";
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: bottom;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.enot_module .payment_methods input:checked + label {
    background-color: cadetblue;
    border-color: cadetblue;
    color: white;
}

.enot_module label[for="ad"]:before {
    background-image: url('images/logo-advcash.png');
}
.enot_module label[for="ap"]:before {
    background-image: url('images/logo-applepay.png');
}
.enot_module label[for="bc"]:before {
    background-image: url('images/logo-bitcoincash.png');
}
.enot_module label[for="bt"]:before {
    background-image: url('images/logo-bitcoin.png');
}
.enot_module label[for="cd"]:before {
    background-image: url('images/logo-card.png');
}
.enot_module label[for="ds"]:before {
    background-image: url('images/logo-dash.png');
}
.enot_module label[for="et"]:before {
    background-image: url('images/logo-ethereum.png');
}
.enot_module label[for="lc"]:before {
    background-image: url('images/logo-litecoin.png');
}
.enot_module label[for="pm"]:before {
    background-image: url('images/logo-pm.png');
}
.enot_module label[for="sp"]:before {
    background-image: url('images/logo-samsung.png');
}
.enot_module label[for="ya"]:before {
    background-image: url('images/logo-yoomoney.png');
}
.enot_module label[for="qw"]:before {
    background-image: url('images/logo-qiwi.png');
}
.enot_module label[for="zc"]:before {
    background-image: url('images/logo-zcoin.png');
}
.enot_module label[for="op"]:before {
    background-image: url('images/logo-more.png');
}
/* .enot_module label[for="rs"]:before {
    background-image: url('images/logo-raschet.png');
} */

.enot_module input[type="submit"] {
    display: block;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    /* margin-bottom: 10px; */
    padding: 12px 14.56px;
    color: #fff;
    background: lightgray;
    border-color: lightgray;    
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background-color .3s ease-out;
    box-sizing: border-box;
    box-shadow: none;
    pointer-events: none;
    cursor: not-allowed;
}

.enot_module .payment_methods input:checked ~ input[type="submit"] {
    background: #297fca;
    border-color: #297fca;   
    pointer-events: initial;
    cursor: pointer;
}


.order_info {
    margin: auto;
    max-width: 800px;
    padding: 30px 0;
    font-family: 'Roboto';
    font-size: 13px;
}

.order_info b {
    color: #4b4b4b;
}

.order_info table {
    width: 100%;
}

.order_info table td {
    border-top: 1px solid #e9ecee;
    padding: 10px 15px;
    padding-left: 0;
}

.order_info table td:first-child {
    /* font-weight: bold; */
    color: gray;
}

.order_info table tr:first-child td {
    border:none
}

.order_info .order_info_string .date {
    color:#B2B2B2;
}

.order_info .payment_status:before {
    position: relative;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
}
.order_info .payment_status.success:before {
    content: url(images/fakt_pay_3.png);
}
.order_info .payment_status.error:before {
    content: url(images/fakt_pay_2.png);
}

.order_info .paid_goods_header {
    padding: 10px 0 5px;
    color: #4b4b4b;
    font-weight: bold;
    text-transform: uppercase;
}

.order_info .paid_goods_header span {
    color: #B2B2B2;
    font-weight: 400;
    text-transform: lowercase;
}

.order_info .paid_goods {
    width: 100%;
    padding: 20px;
    position: relative;
    box-sizing: border-box;
    background-color: #e7f2fc;
    border: 3px solid #a2c9f7;
    font-weight: 500;
    color: #555;
    line-height: 1.5;
}

.order_not_found {
    text-align: center;
    font-size: large;
}
.order_info .order_not_found:before {
    display: block;
    position: relative;
    content: "";
    width: 128px;
    height: 128px;
    background-image: url(images/order_not_found.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
}