/****************************************************************************************************
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: #238ea6;
                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: #238ea6;
        }
/****************************************************************************************************
Textfield & Button css start here
****************************************************************************************************/
.primarybtn {
    padding: 9px 15px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: solid 0px #f8a830;
    background: #f8a830;
    border-radius: 5px;
    transition: 0.4s;
}

    .primarybtn:hover, .primarybtn:focus, .primarybtn.focus {
        background: #e67d23;
        color: #fff;
        text-decoration: none;
    }

.primarybtnborder {
    padding: 8px 15px;
    font-size: 14px;
    color: #238ea6;
    text-align: center;
    border: solid 1px #238ea6;
    background: none;
    border-radius: 5px;
    transition: 0.4s;
}

    .primarybtnborder:hover, .primarybtnborder:focus, .primarybtnborder.focus {
        background: #238ea6;
        color: #fff;
        text-decoration: none;
    }

.secondarybtn {
    padding: 9px 20px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: solid 0px #f8a830;
    background: #f8a830;
    border-radius: 5px;
    transition: 0.4s;
}

    .secondarybtn:hover, .secondarybtn:focus, .secondarybtn.focus {
        background: #e67d23;
        color: #fff;
        text-decoration: none;
    }

.secondarybtnborder {
    padding: 8px 20px;
    font-size: 14px;
    color: #83aa1d;
    text-align: center;
    border: solid 1px #83aa1d;
    background: none;
    border-radius: 5px;
    transition: 0.4s;
}

    .secondarybtnborder:hover, .secondarybtnborder:focus, .secondarybtnborder.focus {
        background: #83aa1d;
        color: #fff;
        text-decoration: 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: 9px 10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    /*color: #238ea6;*/
    text-align: center;
    border: solid 0px #238ea6;
    /*background: none;*/
    border-radius: 5px;
    transition: 0.4s;
    background: #238ea6;
    color: #fff;
    text-decoration: none;
}

    .userloginbtn:hover, .userloginbtn:focus, .userloginbtn.focus {
        background: #017691;
        color: #fff;
        text-decoration: none;
    }

.agentloginbtn {
    padding: 9px 10px;
    font-size: 14px;
    /*color: #f8a830;*/
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
    border: solid 0px #f8a830;
    /*background: none;*/
    border-radius: 5px;
    transition: 0.4s;
    background: #f8a830;
    color: #fff;
    text-decoration: none;
}

    .agentloginbtn:hover, .agentloginbtn:focus, .agentloginbtn.focus {
        background: #f59300;
        color: #fff;
        text-decoration: none;
    }

.newslettertextfield {
    background: #14819A;
    border: none;
    padding: 0px 10px;
    font-size: 14px;
    color: #DEE9F3;
    width: 100%;
    height: 40px;
    border-radius: 7px;
}

    .newslettertextfield:focus {
        outline: none;
    }

    .newslettertextfield::placeholder {
        color: #DEE9F3;
    }

.newsletterbtn {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 9px 22px;
    transition: 0.3s;
    text-align: center;
    background: none;
    width: 100%;
}

    .newsletterbtn:hover, .newsletterbtn:focus, .newsletterbtn.focus {
        background: #fff;
        color: #238ea6 !important;
        text-decoration: none;
    }

.downloaditnerybtn {
    padding: 7px 10px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    border: solid 0px #f8a830;
    background: #f8a830;
    border-radius: 5px;
    transition: 0.4s;
}

    .downloaditnerybtn:hover, .downloaditnerybtn:focus, .downloaditnerybtn.focus {
        background: #e67d23;
        color: #fff;
        text-decoration: none;
    }

.emailitnerybtn {
    padding: 6px 10px;
    font-size: 13px;
    color: #238ea6;
    text-align: center;
    border: solid 1px #238ea6;
    background: none;
    border-radius: 5px;
    transition: 0.4s;
}

    .emailitnerybtn:hover, .emailitnerybtn:focus, .emailitnerybtn.focus {
        background: #238ea6;
        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: 16px;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 0px;
    text-align: right;
}
/****************************************************************************************************
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: 6px 0px;
        font-size: 13px;
        width: 60px;
        line-height: 16px;
    }

    .agentloginbtn {
        padding: 5px 0px;
        font-size: 13px;
        width: 60px;
        line-height: 16px;
    }
}

@media screen and (max-width : 480px) {
}
