/****************************************************************************************************
Radio Button and Checkbox css start here
****************************************************************************************************/

label {
    font-weight: normal;
    white-space: nowrap;
    width: 80%;
}

    label + span {
        float: right;
        background: #d0e2c7;
        color: #3b3e3b;
        font-size: 12px;
        padding: 3px 3px;
        border-radius: 3px;
    }

    /*label img {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}*/

    label input {
        position: absolute;
        left: -1000px;
        opacity: 0;
    }

        label input + span {
            display: inline-block;
            border: 1px solid #d2d2d2;
            background-color: #fff;
            height: 14px;
            width: 14px;
            vertical-align: middle;
        }

            label input + span + span {
                display: inline-block;
                vertical-align: middle;
                margin-left: 5px;
                white-space: normal;
                width: 90%;
            }

        label input:checked + span {
            border: 1px solid #d1d1d1;
        }

            label input:checked + span:after {
                content: "";
                background-color: #c34417;
                height: 6px;
                width: 6px;
                display: block;
                margin: 3px;
            }

input[type=checkbox]:not(old),
input[type=radio]:not(old) {
    margin: 0;
    padding: 0;
    opacity: 0;
    display: none;
}

    input[type=checkbox]:not(old) + label,
    input[type=radio]:not(old) + label {
        display: block;
    }

        input[type=radio]:not(old) + label > span {
            display: inline-block;
            width: 15px;
            height: 15px;
            margin: 0px;
            border: 1px solid #dedee6;
            border-radius: 10px;
            background: #fff;
            vertical-align: top;
        }

    input[type=checkbox]:not(old):checked + label > span,
    input[type=radio]:not(old):checked + label > span {
        background-color: #fff;
    }

        input[type=radio]:not(old):checked + label > span > span {
            display: block;
            width: 7px;
            height: 7px;
            margin: 3px;
            border-radius: 5px;
            background: #00a0e3;
        }


/****************************************************************************************************
Textfield & Button css start here
****************************************************************************************************/

.primarybtn {
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: solid 0px #c34417;
    background: #ED9B1E;
    background: linear-gradient(100deg, rgba(237, 155, 30, 1) 0%, rgba(195, 68, 23, 1) 100%);
    border-radius: 8px;
    transition: 0.4s;
}

    .primarybtn:hover,
    .primarybtn:focus,
    .primarybtn.focus {
        background: #ED9B1E;
        background: linear-gradient(100deg, rgba(237, 155, 30, 1) 0%, rgba(195, 68, 23, 1) 100%);
        color: #fff;
        text-decoration: none;
    }

.primarybtnborder {
    padding: 9px 15px;
    font-size: 14px;
    color: #ED9B1E;
    text-align: center;
    border: solid 1px #ED9B1E;
    background: none;
    border-radius: 5px;
    transition: 0.4s;
}

    .primarybtnborder:hover,
    .primarybtnborder:focus,
    .primarybtnborder.focus {
        background: #ED9B1E;
        color: #fff;
        text-decoration: none;
    }

.secondarybtn {
    padding: 10px 15px;
    font-size: 14px;
    color: #c34417;
    text-align: center;
    border: solid 0px #c34417;
    background: #f9f2e6;
    border-radius: 5px;
    transition: 0.4s;
}

    .secondarybtn:hover,
    .secondarybtn:focus,
    .secondarybtn.focus {
        background: #f9f2e6;
        color: #c34417;
        text-decoration: none;
    }

.secondarybtnborder {
    padding: 9px 15px;
    font-size: 14px;
    color: #282828;
    text-align: center;
    border: solid 1px #282828;
    background: none;
    border-radius: 5px;
    transition: 0.4s;
}

    .secondarybtnborder:hover,
    .secondarybtnborder:focus,
    .secondarybtnborder.focus {
        background: #e0e0e0;
        color: #282828;
        text-decoration: none;
    }

.sharebtn {
    padding: 0px 0px;
    font-size: 14px;
    color: #ed9b1e;
    text-align: center;
    border: solid 0px #fff;
    background: #333;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    transition: 0.4s;
}

    .sharebtn:hover,
    .sharebtn:focus,
    .sharebtn.focus {
        background: #ed9b1e;
        text-decoration: none;
        color: #fff;
    }

.viewarrowbtn {
    padding: 0px 0px;
    font-size: 14px;
    color: #2a1c6b;
    text-align: center;
    border: solid 0px #fff;
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    transition: 0.4s;
}

    .viewarrowbtn:hover,
    .viewarrowbtn:focus,
    .viewarrowbtn.focus {
        background: #f2f2f2;
        text-decoration: none;
    }

    .viewarrowbtn img {
        height: 18px;
        width: 18px;
        border-radius: 0px;
        object-fit: none;
        object-position: none;
    }

        .viewarrowbtn img:hover {
            transform: none;
        }

.genformlabel {
    margin-bottom: 5px;
}

    .genformlabel label {
        font-size: 13px;
        color: #000;
        line-height: 18px;
        font-weight: 400;
    }

.genformlabelwhite {
    margin-bottom: 5px;
}

    .genformlabelwhite label {
        font-size: 13px;
        color: #fff;
        line-height: 18px;
        font-weight: 400;
    }

.userloginbtn {
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border: solid 0px #ed9b1e;
    background: #ed9b1e;
    border-radius: 8px;
    transition: 0.4s;
}

    .userloginbtn:hover,
    .userloginbtn:focus,
    .userloginbtn.focus {
        background: #c97e0d;
        color: #fff;
        text-decoration: none;
    }

.agentloginbtn {
    padding: 9px 20px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: solid 0px #c34417;
    background: #c34417;
    border-radius: 8px;
    transition: 0.4s;
}

    .agentloginbtn:hover,
    .agentloginbtn:focus,
    .agentloginbtn.focus {
        background: #952903;
        color: #fff;
        text-decoration: none;
    }

.newslettertextfield {
    background: #f6f6f6;
    border: none;
    padding: 0px 10px;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
}

    .newslettertextfield:focus {
        outline: none;
    }

    .newslettertextfield::placeholder {
        color: #251c1e;
    }

.newsletterbtn {
    background: #f6f6f6;
    width: 40px;
    height: 40px;
    border: solid 0px #09a48c;
    font-size: 16px;
    color: #00a0e3;
}

.downloaditnerybtn {
    padding: 7px 10px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    border: solid 0px #687c99;
    background: #1e1e1e;
    border-radius: 5px;
    transition: 0.4s;
}

    .downloaditnerybtn:hover,
    .downloaditnerybtn:focus,
    .downloaditnerybtn.focus {
        background: #363636;
        color: #fff;
        text-decoration: none;
    }

.emailitnerybtn {
    padding: 6px 10px;
    font-size: 13px;
    color: #1e1e1e;
    text-align: center;
    border: solid 1px #1e1e1e;
    background: none;
    border-radius: 5px;
    transition: 0.4s;
}

    .emailitnerybtn:hover,
    .emailitnerybtn:focus,
    .emailitnerybtn.focus {
        background: #1e1e1e;
        color: #fff;
        text-decoration: none;
    }

.logintextfield {
    background: #fff;
    border: solid 0px #d1d1d1;
    font-weight: 300;
    padding: 0px 15px;
    font-size: 15px;
    color: #000;
    width: 100%;
    border-radius: 5px;
    height: 45px;
}

    .logintextfield:focus {
        outline: none;
    }

    .logintextfield::-moz-placeholder {
        color: #4a4a4a;
        opacity: 1;
    }

    .logintextfield:-ms-input-placeholder {
        color: #4a4a4a;
    }

    .logintextfield::-webkit-input-placeholder {
        color: #4a4a4a;
    }

.logintextfieldselect {
    font-weight: 300;
    padding: 0px 10px;
    font-size: 15px;
    color: #000;
    width: 100%;
    border-radius: 5px;
    height: 45px;
    border: solid 0px #d1d1d1;
    -webkit-appearance: none !important;
    background: #fff url(../img/selectarrow.png) no-repeat right center !important;
    background-color: #fff;
    background-image: none;
}

.dropdownbtn {
    background: none;
    padding: 0px;
    margin-top: 8px;
    font-size: 13px;
    color: #c34417;
    border: none;
    width: 100%;
    border-radius: 0px;
    text-align: right;
}

.sharebtn {
    padding: 0px 0px;
    font-size: 14px;
    color: #ed9b1e;
    text-align: center;
    border: solid 1px #ed9b1e;
    background: #fff;
    width: 92px;
    height: 42px;
    border-radius: 10px;
    transition: 0.4s;
    font-weight: 500;
}

    .sharebtn:hover,
    .sharebtn:focus,
    .sharebtn.focus {
        background: #ed9b1e;
        text-decoration: none;
        color: #fff;
    }

/****************************************************************************************************
Media Query css start here
****************************************************************************************************/

@media screen and (max-width : 1080px) {

    .userloginbtn {
        padding: 10px 15px;
    }

    .agentloginbtn {
        padding: 9px 20px;
    }
}

@media screen and (max-width : 992px) {
}

@media screen and (max-width : 767px) {
    .userloginbtn {
        padding: 10px 10px;
    }

    .agentloginbtn {
        padding: 9px 10px;
    }
}


@media screen and (max-width : 480px) {
}
