:root {
    --h1size: 50px;
    --h2size: 40px;
    --h3size: 24px;
    --h4size: 20px;
    --h5size: 18px;
    --h6size: 16px;
    --bodysize: 16px;
    --h1height: 58px;
    --h2height: 48px;
    --h3height: 32px;
    --h4height: 28px;
    --h5height: 26px;
    --h6height: 26px;
    --bodyheight: 26px;
    --pfamily: 'Rubik', sans-serif;
    --red: #ff3838;
    --gray: #777777;
    --text: #555555;
    --blue: #1494a9;
    --white: #ffffff;
    --chalk: #f5f5f5;
    --green: #11b76b;
    --purple: #b12fad;
    --orange: #e86121;
    --yellow: #ffab10;
    --body: #f5f6f7;
    --border: #e8e8e8;
    --heading: #39404a;
    --primary: #02404d;
    --sub-heading: #565765;
    --green-chalk: #ddffd5;
    --green-dark: #072f17;
    --gray-chalk: #cccccc;
    --intro-bg: #f8fffa;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
    --twitter: #00acee;
    --google: #E60023;
    --instagram: #F77737;
    --primary-bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    --primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
ul,ol {
    list-style: none;
    padding : 0;
}

p {
    margin : 0;
}
a {
    text-decoration: none;
}
a.back {
    color : var(--primary);
    font-weight : bold;
    border : 2px solid var(--primary);
    padding : 10px 20px;
    display : inline-block;
    border-radius : 30px;
    margin-top : 20px;
}
.auth-holder {
    max-width: 550px;
    margin : 30px auto;
}
button {
    border : none;
}
/* MATERIALIZE CHECKBOX */
.materialize-checkbox {
    position: relative;
}
.materialize-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
    padding: 0;
}
.materialize-checkbox label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 18px;
    display: block;
}
.materialize-checkbox label::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #5a5a5a;
    border-radius: 1px;
    margin-top: 2px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.materialize-checkbox input[type="checkbox"]:checked + label:before {
    top: -4px;
    left: -5px;
    width: 10px;
    height: 18px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #26a69a;
    border-bottom: 2px solid #26a69a;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.materialize-checkbox label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    border-radius: 1px;
    margin-top: 2px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
[type="checkbox"]:not(.filled-in) + label:after {
    border: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
ul.inline-style1 li {
    position: relative;
    display: inline-block;
    margin-right: 25px;
}
.user-form-part {
    padding-top: 30px;
}
body.bg-body .user-form-part {
    padding-top : 0;
}
.user-form-logo {
    text-align: center;
    margin-bottom: 25px;
}
.user-form-logo img {
    width: 200px;
}
.user-form-card {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--white);
    border: 1px solid var(--border);
}
body.bg-body .user-form-card {
    padding : 45px 45px 50px;
}
@media(max-width : 767px) {
    body.bg-body .user-form-card {
        padding : 25px 25px 30px;
    }
}
.user-form-title {
    text-align: center;
    margin-bottom: 30px;
}
.user-form-title-2 {
    margin-bottom: 25px;
}
.user-form-title-2 h3 {
    font-size: 16px;
    font-weight: bold;
}
.user-form-title h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
    color: var(--primary);
}
.user-form-title p {
    text-transform: capitalize;
}
.user-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.user-form-social {
    width: 100%;
}
.user-form-social li {
    margin-bottom: 20px;
}
.user-form-social li a {
    width: 100%;
    font-size: 15px;
    padding: 10px 0px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    background: var(--primary);
    display : block;
}
.user-form-social li a i {
    font-size: 16px;
    margin-right: 10px;
}
.user-form-social li:last-child {
    margin-bottom: 0px;
}
.user-form-social .facebook {
    background: var(--facebook);
}
.user-form-social .twitter {
    background: var(--twitter);
}
.user-form-social .google {
    background: var(--google);
}
.user-form-social .instagram {
    background: var(--instagram);
}
.user-form-divider {
    width: 1px;
    height: 240px;
    margin: 0px 50px;
    background: var(--border);
    position: relative;
    z-index: 1;
}
.user-form-divider p {
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto;
    font-style: italic;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    color: var(--gray);
    background: var(--white);
    border: 1px solid var(--border);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.user-form {
    width: 100%;
}
.user-form .form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    padding: 0px 20px 2px;
    color: var(--text);
    /* background: var(--chalk);d */
    border: 1px solid #bbb;
}
.form-button {
    text-align: center;
}
.form-button button {
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    line-height: 45px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
}
.form-button p {
    font-size: 15px;
    margin-top: 12px;
    text-transform: capitalize;
}
.form-button p a {
    font-weight: 500;
    margin-left: 5px;
    color: var(--primary);
}
.form-button p a:hover {
    text-decoration: underline;
}
.user-form-remind {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
}
.user-form-remind p {
    font-size: 15px;
    text-transform: capitalize;
}
.user-form-remind p a {
    font-weight: 500;
    margin-left: 5px;
    color: var(--primary);
}
.user-form-remind p a:hover {
    text-decoration: underline;
}
.user-form-footer {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 40px;
}
body.bg-body .user-form-footer {
    margin-bottom : 0;
}
.user-form-footer p {
    font-size: 14px;
    color: var(--gray);
}
.user-form-footer p a {
    color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.user-form-footer p a:hover {
    text-decoration: underline;
}

.wanted-product-holder {
    margin-bottom: 15px;
}
.wanted-product-box-holder {
    padding-left: 25px;
    background-color: #eee;
    margin : 10px 0;
    padding : 15px 10px 10px;
    position: relative;
    display: none;
}
.main-option {
    margin-bottom: 10px;
}
.options-related:checked ~ .wanted-product-box-holder {
    display: block;
}

body.bg-body {
    background: url(../../images/bg/bg-2.webp) no-repeat center center;
    background-size: cover;
    padding: 30px 0 30px;
    background-color: var(--color-1);
}
.wanted-product-box-holder::before {
    content : '';
    position: absolute;
    left : 20px;
    top : -10px;
    width : 0;
    height : 0;
    border-left : 12px solid transparent;
    border-right : 12px solid transparent;
    border-bottom : 12px solid #eee;
}
.wanted-product-box {
    position: relative;
    display : grid;
    grid-template-columns: 1fr 75px;
    grid-gap : 15px;
    padding : 5px 10px;
    margin-bottom: 5px;
}
.wanted-product-box:last-child {
    margin-bottom: 0;
}
.wanted-product-box .qty {
    display: none;
}
.wanted-product-box .cart-checkbox:checked ~ .qty {
    display: block;
}
.wanted-product-box select {
    width: 100%;
    height: 100%;
    border: 1px solid #222;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

@media (max-width: 575px) {
    .user-form-card {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .user-form-group {
        display: inherit;
    }
    .user-form-divider {
        width: 100%;
        height: 1px;
        margin: 50px 0px;
    }
}
