
/* Basic Tables */
.thead-primary thead {
  background-color: #130e37;
}

.thead-dark thead th, .thead-primary thead th, .thead-secondary thead th,
.thead-success thead th, .thead-info thead th, .thead-warning thead th,
.thead-danger thead th {
  color: #fff;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table td, .table th {
        padding: .75rem;
        vertical-align: top;
        /*border-top: 1px solid #dee2e6;*/
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }

    .table tbody + tbody {
        border-top: 2px solid #dee2e6;
    }

    .table .table {
        background-color: #fff;
    }

.table-sm td, .table-sm th {
    padding: .3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

    .table-bordered td, .table-bordered th {
        border: 1px solid #dee2e6;
    }

    .table-bordered thead td, .table-bordered thead th {
        border-bottom-width: 2px;
    }

.table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,.075);
}

.table-primary, .table-primary > td, .table-primary > th {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

    .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
        background-color: #9fcdff;
    }

.table-secondary, .table-secondary > td, .table-secondary > th {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

    .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
        background-color: #c8cbcf;
    }

.table-success, .table-success > td, .table-success > th {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

    .table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
        background-color: #b1dfbb;
    }

.table-info, .table-info > td, .table-info > th {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

    .table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
        background-color: #abdde5;
    }

.table-warning, .table-warning > td, .table-warning > th {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

    .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
        background-color: #ffe8a1;
    }

.table-danger, .table-danger > td, .table-danger > th {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

    .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
        background-color: #f1b0b7;
    }

.table-light, .table-light > td, .table-light > th {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

    .table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
        background-color: #ececf6;
    }

.table-dark, .table-dark > td, .table-dark > th {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

    .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
        background-color: #b9bbbe;
    }

.table-active, .table-active > td, .table-active > th {
    background-color: rgba(0,0,0,.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0,0,0,.075);
}

    .table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
        background-color: rgba(0,0,0,.075);
    }

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

    .table-dark td, .table-dark th, .table-dark thead th {
        border-color: #32383e;
    }

    .table-dark.table-bordered {
        border: 0;
    }

    .table-dark.table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(255,255,255,.05);
    }

    .table-dark.table-hover tbody tr:hover {
        background-color: rgba(255,255,255,.075);
    }

@media (max-width:575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-sm > .table-bordered {
            border: 0;
        }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-md > .table-bordered {
            border: 0;
        }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-lg > .table-bordered {
            border: 0;
        }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-xl > .table-bordered {
            border: 0;
        }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .table-responsive > .table-bordered {
        border: 0;
    }




display-flex, .signup-content, .form-row, .form-radio, .select-icon, .select-icon i {
    display: flex;
    display: -webkit-flex;
}

list-type-ulli {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/montserrat/Montserrat-Light.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/montserrat/Montserrat-Italic.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/montserrat/Montserrat-Medium.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/montserrat/Montserrat-Bold.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/montserrat/Montserrat-BoldItalic.ttf);
}

@font-face {
    font-family: montserrat;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/montserrat/montserrat-v12-latin-900.ttf),url(../fonts/montserrat/montserrat-v12-latin-900.eot) format("embedded-opentype"),url(../fonts/montserrat/montserrat-v12-latin-900.svg) format("woff2"),url(../fonts/montserrat/montserrat-v12-latin-900.woff) format("woff"),url(../fonts/montserrat/montserrat-v12-latin-900.woff2) format("truetype");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/poppins/poppins-v5-latin-300.eot);
    src: local("Poppins Light"),local("Poppins-Light"),url(../fonts/poppins/poppins-v5-latin-300d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-300.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-300.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-300.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-300.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/poppins/poppins-v5-latin-300italic.eot);
    src: local("Poppins Light Italic"),local("Poppins-LightItalic"),url(../fonts/poppins/poppins-v5-latin-300italicd41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-300italic.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-300italic.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-300italic.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-300italic.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/poppins/poppins-v5-latin-regular.eot);
    src: local("Poppins Regular"),local("Poppins-Regular"),url(../fonts/poppins/poppins-v5-latin-regulard41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-regular.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-regular.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-regular.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-regular.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/poppins/poppins-v5-latin-italic.eot);
    src: local("Poppins Italic"),local("Poppins-Italic"),url(../fonts/poppins/poppins-v5-latin-italicd41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-italic.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-italic.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-italic.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-italic.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/poppins/poppins-v5-latin-500.eot);
    src: local("Poppins Medium"),local("Poppins-Medium"),url(../fonts/poppins/poppins-v5-latin-500d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-500.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-500.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-500.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-500.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/poppins/poppins-v5-latin-500italic.eot);
    src: local("Poppins Medium Italic"),local("Poppins-MediumItalic"),url(../fonts/poppins/poppins-v5-latin-500italicd41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-500italic.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-500italic.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-500italic.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-500italic.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/poppins/poppins-v5-latin-600.eot);
    src: local("Poppins SemiBold"),local("Poppins-SemiBold"),url(../fonts/poppins/poppins-v5-latin-600d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-600.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-600.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-600.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-600.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/poppins/poppins-v5-latin-700.eot);
    src: local("Poppins Bold"),local("Poppins-Bold"),url(../fonts/poppins/poppins-v5-latin-700d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-700.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-700.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-700.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-700.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/poppins/poppins-v5-latin-700italic.eot);
    src: local("Poppins Bold Italic"),local("Poppins-BoldItalic"),url(../fonts/poppins/poppins-v5-latin-700italicd41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-700italic.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-700italic.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-700italic.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-700italic.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/poppins/poppins-v5-latin-800.eot);
    src: local("Poppins ExtraBold"),local("Poppins-ExtraBold"),url(../fonts/poppins/poppins-v5-latin-800d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-800.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-800.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-800.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-800.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/poppins/poppins-v5-latin-800italic.eot);
    src: local("Poppins ExtraBold Italic"),local("Poppins-ExtraBoldItalic"),url(../fonts/poppins/poppins-v5-latin-800italicd41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-800italic.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-800italic.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-800italic.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-800italic.svg#Poppins) format("svg");
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/poppins/poppins-v5-latin-900.eot);
    src: local("Poppins Black"),local("Poppins-Black"),url(../fonts/poppins/poppins-v5-latin-900d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/poppins/poppins-v5-latin-900.woff2) format("woff2"),url(../fonts/poppins/poppins-v5-latin-900.woff) format("woff"),url(../fonts/poppins/poppins-v5-latin-900.ttf) format("truetype"),url(../fonts/poppins/poppins-v5-latin-900.svg#Poppins) format("svg");
}

a:focus, a:active {
    text-decoration: none;
    outline: none;
    transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
}

input, select, textarea {
    outline: none;
    appearance: unset!important;
    -moz-appearance: unset!important;
    -webkit-appearance: unset!important;
    -o-appearance: unset!important;
    -ms-appearance: unset!important;
}

    input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
        appearance: none!important;
        -moz-appearance: none!important;
        -webkit-appearance: none!important;
        -o-appearance: none!important;
        -ms-appearance: none!important;
        margin: 0;
    }

    input:focus, select:focus, textarea:focus {
        outline: none;
        box-shadow: none!important;
        -moz-box-shadow: none!important;
        -webkit-box-shadow: none!important;
        -o-box-shadow: none!important;
        -ms-box-shadow: none!important;
    }

    input[type=checkbox] {
        appearance: checkbox!important;
        -moz-appearance: checkbox!important;
        -webkit-appearance: checkbox!important;
        -o-appearance: checkbox!important;
        -ms-appearance: checkbox!important;
    }

    input[type=radio] {
        appearance: radio!important;
        -moz-appearance: radio!important;
        -webkit-appearance: radio!important;
        -o-appearance: radio!important;
        -ms-appearance: radio!important;
    }

img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield!important;
    appearance: none!important;
    -webkit-appearance: none!important;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 30px transparent inset;
    -moz-box-shadow: 0 0 0 30px transparent inset;
    -webkit-box-shadow: 0 0 0 30px transparent inset;
    -o-box-shadow: 0 0 0 30px transparent inset;
    -ms-box-shadow: 0 0 0 30px transparent inset;
}

h2 {
    line-height: 1.66;
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #222;
    font-family: montserrat;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.clear {
    clear: both;
}

body {
    font-size: 13px;
    line-height: 1.8;
    color: #222;
    font-weight: 400;
    background: #3395ec;
    /*padding: 90px 0;*/
}

.container {
    /*width: 1400px;*/
    position: relative;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
}

.signup-img, .signup-form {
    width: 100%;
}

.signup-img {
    margin-bottom: -7px;
}

.register-form {
    padding: 50px 100px 50px 70px;
}

.form-row {
    margin: 0 -15px;
}

    .form-row .form-group {
        width: 50%;
        padding: 0 15px;
    }

.form-group {
    margin-bottom: 23px;
    position: relative;
}

input, select {
    display: block;
    width: 100%;
    border: 1px solid #ebebeb;
    padding: 11px 20px;
    box-sizing: border-box;
    font-family: montserrat;
    font-weight: 500;
    font-size: 13px;
}

    input:focus, select:focus {
        border: 1px solid #ff6801;
    }

label {
    font-size: 14px;
    /*font-weight: 700;*/
    font-family: montserrat;
    margin-bottom: 2px;
    display: block;
}
.bold {
    font-weight: 700;
}
.form-radio {
    margin-bottom: 18px;
}

    .form-radio input {
        width: auto;
        display: inline-block;
    }

.radio-label {
    padding-right: 72px;
}

.form-radio-item {
    position: relative;
    margin-right: 45px;
}

    .form-radio-item label {
        font-weight: 500;
        font-size: 13px;
        padding-left: 25px;
        position: relative;
        z-index: 9;
        display: block;
        cursor: pointer;
    }

.check {
    display: inline-block;
    position: absolute;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    height: 13px;
    width: 13px;
    top: 4px;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

    .check:before {
        position: absolute;
        display: block;
        content: '';
        width: 9px;
        height: 9px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        top: 2px;
        left: 2px;
        margin: auto;
        transition: background .25s linear;
        -webkit-transition: background .25s linear;
    }

input[type=radio] {
    position: absolute;
    visibility: hidden;
}

    input[type=radio]:checked ~ .check {
        border: 1px solid #ff6801;
    }

        input[type=radio]:checked ~ .check::before {
            background: #ff6801;
        }

.form-select {
    position: relative;
}

select {
    appearance: none!important;
    -moz-appearance: none!important;
    -webkit-appearance: none!important;
    -o-appearance: none!important;
    -ms-appearance: none!important;
    position: relative;
    background: 0 0;
    z-index: 10;
    cursor: pointer;
}

.select-icon {
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
}

    .select-icon i {
        justify-content: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -o-justify-content: center;
        -ms-justify-content: center;
        align-items: center;
        -moz-align-items: center;
        -webkit-align-items: center;
        -o-align-items: center;
        -ms-align-items: center;
        width: 40px;
        height: 20px;
        font-size: 18px;
        color: #999;
    }

.form-submit {
    text-align: right;
    padding-top: 27px;
}

.submit {
    width: 170px;
    height: 40px;
    display: inline-block;
    font-family: poppins;
    font-weight: 400;
    font-size: 13px;
    padding: 10px;
    border: none;
    cursor: pointer;
}

#reset {
    background: #f8f8f8;
    color: #999;
    margin-right: 8px;
}

    #reset:hover {
        background: #ff6801;
        color: #fff;
    }

#submit {
    background: #ff6801;
    color: #fff;
}

    #submit:hover {
        background-color: #cd5300;
    }

@media screen and (max-width:992px) {
    .container {
        width: calc(100% - 40px);
        max-width: 100%;
    }

    .signup-content {
        flex-direction: column;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
    }

    .signup-img, .signup-form {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .register-form {
        padding: 50px 40px;
    }
}

@media screen and (max-width:575px) {
    .form-row {
        flex-direction: column;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
        margin: 0;
    }

        .form-row .form-group {
            width: 100%;
            padding: 0;
        }

    .radio-label {
        padding-right: 22px;
    }

    .form-radio-item {
        margin-right: 25px;
    }
}

@media screen and (max-width:480px) {
    .form-radio {
        flex-direction: column;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
    }

    .submit {
        width: 100%;
    }

    #reset {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
