_starting-service.css 2.59 KB
.installment-starting-service-page {
    background: #fff;

    .exclamation {
        background-color: #ff7f7f;
        color: white;
        padding: 35px 20px;
        font-weight: normal;
    }

    .field {
        padding: 25px;
        border-bottom: 1px solid #e0e0e0;
        min-height: 90px;
    }

    .apply-button {
        background-color: #444;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 27px;
        width: 473px;
        height: 90px;
        line-height: 90px;
        margin: 0 auto;
        display: block;

        &:disabled {
            opacity: 0.5;
        }
    }

    .agreements {
        padding: 30px 45px 0 63px;

        label {
            font-size: 27px;
            color: #444;
        }

        a {
            color: #4d90e2;

            &:hover {
                text-decoration: underline;
            }
        }
    }

    .bank-info {
        padding-left: 100px;

        img {
            width: 32px;
            height: 32px;
            display: inline-block;
        }

        span {
            line-height: 32px;
            position: absolute;
            margin-left: 10px;
            margin-top: 1px;
        }
    }

    .count-down {
        border: 1px solid #84c990;
        border-radius: 4px;
        background: transparent;
        color: #84c990;
        width: 180px;
        height: 55px;
        float: right;
    }

    .data-encryption {
        color: #b0b0b0;
        margin: 0 auto 20px;
        text-align: center;
    }

    label {
        font-size: 32px;
        color: #444;
        float: left;
    }

    input[type=text] {
        font-size: 27px;
        height: 40px;
        color: #444;
        float: left;
        margin-top: 2px;
        border: none;
        background: transparent;
    }

    .provider-mark {
        text-align: center;
        font-size: 27px;
        color: #444;
        margin-top: 64px;
        margin-bottom: 24px;
    }

    .bottom-block {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
}

.installment-check-btn {
    display: none;

    & + label {
        &:before {
            position: absolute;
            content: "";
            display: inline-block;
            width: 32px;
            height: 32px;
            font-size: 27px;
            background: url("/img/home/circle-check-off.png");
            background-size: cover;
            margin-left: -40px;
        }
    }

    &:checked {
        & + label:before {
            background: url("/img/home/circle-check-on.png");
            background-size: cover;
        }
    }
}