/* =========================================================
   ODISHA FABRICS
   SAREE CUSTOMIZER
   ========================================================= */


.og-saree-customizer {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    background: #ffffff;
}


.og-customizer-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.og-customizer-header {
    text-align: center;
    margin-bottom: 45px;
}


.og-customizer-header h1 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: #222222;
}


.og-customizer-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}


/* =========================================================
   FORM
   ========================================================= */

.og-saree-customizer form {
    width: 100%;
}


.og-field {
    margin-bottom: 25px;
}


.og-field label {
    display: block;
    margin-bottom: 9px;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 600;
    color: #333333;
}


/* =========================================================
   SELECT
   ========================================================= */

.og-field select {
    display: block;

    width: 100%;
    min-height: 52px;

    padding: 0 45px 0 16px;

    border: 1px solid #d7d7d7;
    border-radius: 5px;

    background-color: #ffffff;

    color: #333333;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    cursor: pointer;

    box-sizing: border-box;

    appearance: auto;
}


.og-field select:hover {
    border-color: #aaaaaa;
}


.og-field select:focus {
    border-color: #333333;

    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.05);
}


.og-field select:disabled {
    background-color: #f5f5f5;

    color: #999999;

    cursor: not-allowed;

    opacity: 1;
}


/* =========================================================
   TEXT INPUTS
   ========================================================= */

.og-field input,
.og-field textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d7d7d7;
    border-radius: 5px;

    background: #ffffff;

    color: #333333;

    font-family: inherit;
    font-size: 15px;

    outline: none;
}


.og-field input {
    height: 52px;

    padding: 0 16px;
}


.og-field textarea {
    min-height: 120px;

    padding: 14px 16px;

    resize: vertical;
}


.og-field input:focus,
.og-field textarea:focus {
    border-color: #333333;

    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.05);
}


.og-field input::placeholder,
.og-field textarea::placeholder {
    color: #999999;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.og-customizer-divider {
    width: 100%;

    height: 1px;

    margin: 40px 0;

    background: #e5e5e5;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.og-submit-button {
    display: block;

    width: 100%;

    min-height: 54px;

    margin-top: 35px;

    padding: 0 25px;

    border: 0;
    border-radius: 5px;

    background: #222222;

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.og-submit-button:hover {
    background: #000000;
}


.og-submit-button:active {
    transform: translateY(1px);
}


/* =========================================================
   SUCCESS / ERROR
   ========================================================= */

.og-success-message,
.og-error-message {
    margin-top: 25px;

    padding: 15px 18px;

    border-radius: 5px;

    font-size: 14px;
}


.og-success-message {
    background: #eef8f0;

    color: #246b35;

    border: 1px solid #cde8d3;
}


.og-error-message {
    background: #fff1f1;

    color: #a52a2a;

    border: 1px solid #f0cccc;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .og-saree-customizer {
        padding: 45px 18px;
    }


    .og-customizer-header {
        margin-bottom: 35px;
    }


    .og-customizer-header h1 {
        font-size: 30px;
    }


    .og-customizer-header p {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .og-saree-customizer {
        padding: 35px 15px;
    }


    .og-customizer-header h1 {
        font-size: 26px;
    }


    .og-field {
        margin-bottom: 20px;
    }


    .og-field select,
    .og-field input {
        min-height: 50px;
    }


    .og-submit-button {
        min-height: 52px;
    }

}