html {
    line-height: 1;
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height: 100%;
}

a:hover,
a:focus {
    color: #fff;
}

a {
    text-decoration: none !important;
}

button:focus {
    outline: 0 none !important;
}

ul {
    padding: 0;
}

ul li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #061822;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

img {
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    top: 0 !important;
}

* {
    margin: 0;
    padding: 0;
}

/*body{background:url('../img/body-bg.png') no-repeat 0 0;background-size:cover;}
*/
.swal2-styled.swal2-confirm {
    background-color: #0064A8 !important;
}

::placeholder {
    font-size: 80%;
}

::selection {
    color: #fff;
    background-color: #8167a9;
}

::-moz-selection {
    color: #fff;
    background-color: #8167a9;
}

/* #Navigation
================================================== */
.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    background-color: #000;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
    height: 24px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    /* width: 200px; */
    display: block;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #fff !important;
    transition: all 200ms linear;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    height: 82px;
    line-height: 65px;
    padding: 10px !important;
}

nav.navbar.navbar-expand-md.navbar-light {
    padding: 0;
}

.nav-item:hover .nav-link {
    color: #ffffff !important;
    background-color: #2f302f;
    height: 82px;
    line-height: 65px;
    padding: 10px !important;
}

.nav-item.active .nav-link {
    color: #777 !important;
}

.nav-link {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #000000;
    color: white;
    border: none;
    transition: all 200ms linear;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    height: 82px;
    line-height: 65px;
    padding: 10px !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2f302f;
    width: auto;
    z-index: 1;
}

.dropdown-content ul {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    display: flex;
}

.dropdown-content ul li {
    list-style: none;
}

.dropdown-content ul li a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    color: #ffffff;
    width: 200px;
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #2f302f;
    height: 82px;
    line-height: 65px;
    padding: 10px !important;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: rgba(129, 103, 169, 0.6);
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 10px;
    background-color: #ccc;
    height: 250px;
}

.column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.column a:hover {
    background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
}

.submenu-group a h4 {
    margin-top: -158px;
}

.submenu-group a img {
    position: relative;
    width: 100px !important;
    left: -120px;
    top: -60px;
}

#navigation .items-wrapper .item .item-link:hover {
    background-color: #2f302f;
}

#navigation {
    color: #ffffff !important;
    height: 82px;
    line-height: 71px;
    padding: 3px 10px !important;
}

#navigation .items-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#navigation .items-wrapper .item {
    display: inline-block;
}

#navigation .items-wrapper .item:hover>.submenu-wrapper,
#navigation .items-wrapper .item:hover>.arrow {
    display: block;
}

#navigation .items-wrapper .item .arrow {
    display: none;
    width: 0px;
    height: 0px;
    border-top: 15px solid #228c90;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 0px;
    position: relative;
    z-index: 101;
    top: 15px;
    left: 50%;
    margin-top: -15px;
    transform: translateX(-50%);
}

#navigation .items-wrapper .item .item-link {
    color: #fff !important;
    transition: all 200ms linear;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    height: 117px;
    line-height: 68px;
    /* padding: 30px 0px 30px 10px !important; */
    padding: 30px 10px !important;
    text-decoration: none;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group a {
    display: block;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    color: #fff;
}

#navigation .items-wrapper .item .item-link:hover {
    text-decoration: none;
    color: #e0e0e0;
}

#navigation .items-wrapper .item .submenu-wrapper {
    display: none;
    position: absolute;
    background-color: #2f302f;
    width: 100%;
    left: 0px;
    font-family: "Open Sans", sans-serif;
    top: 78px;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group a:hover {
    text-decoration: none;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu {
    max-width: 100%;
    margin: 20px auto;
    font-size: 0px;
    column-count: 3;
    column-gap: 0;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group {
    font-size: 14px;
    box-sizing: border-box;
    padding: 5px 20px 0px;
    margin-bottom: 50px;
    display: block;
    width: 100%;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link-master,
#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link {
    display: block;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link-master:hover,
#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link:hover {
    text-decoration: none;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link-master {
    color: #1c7073;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    line-height: 1.4em;
    margin-bottom: 15px;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link {
    color: #666;
    line-height: 1.4em;
    margin-bottom: 10px;
}

#navigation .items-wrapper .item .submenu-wrapper .item-submenu .submenu-group .submenu-link:hover {
    color: #111;
}

footer {
    background-color: #3e3f40;
    padding: 20px 0 0;
    margin-top: 0;
}

.footer-list li a,
.footer-links a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 31px;
    color: #ffffff;
    text-decoration: none;
}

.footer-links {
    margin-top: 25px;
}

.footer-links a {
    display: block;
}

.footer-list h6 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 31px;
    color: #ffffff;
    margin-bottom: 20px;
}

ul.Social_icon {
    display: flex;
    padding-left: 0;
}

ul.Social_icon li {
    list-style: none;
}

ul.Social_icon li a i {
    color: #fff;
    border: 1px solid#000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #000;
    margin-top: 30px;
}

.footer-list ul li {
    list-style: none;
    padding-right: 10px;
}

.footer-list ul {
    padding-left: 0;
}

.footer-list p {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 31px;
    color: #ffffff;
    margin: 0;
}

.copyright {
    background-color: #000;
    padding: 10px;
}

.copyright_txt span {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 31px;
    color: #ffffff;
}

.copyright_txt a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 31px;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0 12px;
}

.nav-link input {
    position: absolute;
    left: 100%;
    top: 31%;
    width: 44px;
    height: 35px;
    border-style: none;
    padding: 0;
    background-color: black;
    outline: none;
    transition-duration: 500ms;
    cursor: pointer;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAWpJREFUWEfNljFOxDAQRbehoKDnIjTcgYtwAHpOwhE4BA3Vig6Je9ABYZ60kZbVc5xkifRHelrleRzP2rGT3TAM0ahMQmUSKpNQmYTKJFQmoTIJlUmonMFlcV88FW/F5+GXazzt1m8xKjvcFh/FVNBOnvVfhMoJHorvgtgXzNZNcXX45RpPkEe+3Wc2KhswIwz6VTwWF4Xl4Wknj/yzZlKlwDM1LiuDW84p5BH0W/1MqhRYOoLla83cKeSNy01/y+miUmB3EksHGv8Y/a29i0qBI4RgI1h7C/IJ+lt7F5UC5xzBbrX2FuQT9Lf2LiqF+BmMfwbHgWJ3cfw5CEvfJD8FcVdY3ixUTrDkXTzGe3Fd2P26qOww92uGmaM4YnWRKmfAM8VssTs5QlrfgxR1VpEq/5mzilS5AauLVLkRq4pUuSHHRb4WlvMHlRtDkS/F85FrojIJlUmoTEJlEiqTUJmEyiRUJqEyh2H3Cz4WH1fC57RBAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    font-family: 'Segoe UI';
    border-radius: 20px;
}

.nav-link input:focus {
    width: 200px;
    cursor: text;
    padding-left: 40px;
    color: #A0A0A0;
}

.nav-link input:hover {
    background-color: #FFFFFF;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAJTSURBVFiF7ZdNSxtRFIafM5PgJGqXxXy4DIziJhBdFLrwnyi4cym40S4ClkJ/g2B/Qv+BC0s3CtkIDWYZasWtXxEzebswQxGt3sk0Nou8cHfnPTycc+fOOSaJUZb3vwFe0hgwrcaAaTUGTKuRB8wMYrLZ2dxEd3rVPC2aqAoqBi0ZDfXs8DZzsad2++ZfAFrSP0m+NPdO4gtQeSasZcbK9c8f39PAQcIW50vzmxIHQEXQkGzdU2+pc6c3nnpLkq0LGkBF4iBfmt9MC+hcwX7lDgBhfOycTu5IR3ePElotGxSvthFbgJnxPlUlJb14KJdzQSE8CQqhgmJYd/EExbAeFEIFhfCEcjnn4nnqOLV4oju9Sr+tndPJHRdP53RyJ2533z+QnADN0yIAst2n2vqUpKM7ZLsP/EMDFFUAn+gwSfI4PvYPIidA9Z+U6641kySP4/X8k/Ss3CoILYB8RmGS5HF87B9EbhU0GgARfqK7FMfH/kHkBtiz+7tnWjOrZV08ZrUsprUH/mEB3mYu9oCWQTUoXm27eILi1bZBFWj1/cMDVLt9Y8YK0ENs5Upz9b9V0qyWzZXm6ogPAF6PjTSDQ6Jh4f5frE+AJ2gg2/WJDq+71sxnFEb4i5jW+pWL1fS7/vLl+fHZ0AHvId2mGa/HRs/jMxCmgUwMCO7z4NTbhZkoE+2ngRwIMInSQg595L88Pz7zu/4y0ATCKBPtT71dmHH1v8pOkgby1ZamR5DZ6KuL71W3uj+Q9k3SLxfP0D+StBr5vXgMmFZjwLQaA6bVyAP+BkJqfmMbSKF/AAAAAElFTkSuQmCC);
}

.div1 {
    position: absolute;
    left: 0px;
    top: 45px;
    width: 50px;
    height: 5px;
}

a.nav-link.hover:hover {
    background: none !important;
}

ul.navbar-nav.ml-auto.py-4.py-md-0 {
    margin-left: 12% !important;
}

.copyright_txt a:hover {
    color: #fff;
    text-decoration: none;
}

ul.Social_icon li a i:hover {
    background-color: #0099d8;
    border-color: #0099d8;
}

/*-----------------second navbaar-------------*/
.brand-login {
    float: right;
    position: relative;
    top: -12px;
}

.brand-login span {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    text-align: right;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.brand-login a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 12px;
    text-align: right;
    color: #FFFFFF;
    padding: 10px;
}

.brand-login a:hover {
    color: #fff;
}

section .navigation {
    height: 55px;
    background: linear-gradient(45deg, #4199fe, #74b4fe);
}

section.navigation nav {
    margin-left: -50px !important;
}

section .nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

section nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section nav ul li {
    float: left;
    position: relative;
}

section nav ul li a, nav ul li a:visited {
    display: block;
    padding: 0 40px 0 0;
    line-height: 55px;
    color: #fff;
    background: #262626;
    text-decoration: none;
}

section nav ul li a {
    background: transparent;
    position: relative;
    top: -8px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
}

section nav ul li a:hover, nav ul li a:visited:hover {
    color: #ffffff;
}

section.navbar-dropdown li a {
    background: #2581DC;
}

section nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}

section nav ul li ul li {
    min-width: 190px;
}

section nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

section .navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #3e3f40;
}

/* Mobile navigation */
section .nav-mobile {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    background: transparent;
}

section.navigation {
    margin-top: 0;
    background-color: #3E3F40;
    padding: 25px;
}

/*------------faq-page---------------*/
h2.main_heading {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 60px;
    color: #0064A8;
}

section.tabs_Section {
    padding: 40px 0;
}

ul#tabs li a {
    color: #000 !important;
    border: 1px solid#070808;
    height: 30px;
    border-radius: 30px !important;
    padding: 0 15px !important;
    line-height: 30px;
    background-color: #ffffff;
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
}

.nav-tabs {
    border-bottom: none !important;
}

ul#tabs li a.active {
    border: 1px solid#0064a8;
    height: 30px;
    border-radius: 30px !important;
    padding: 0 15px !important;
    line-height: 30px;
    background-color: #0064a8;
    color: #fff !important;
    font-size: 18px;
    margin-right: 5px;
}

span.tab_txt {
    margin-right: 30px;
}

ul#tabs {
    margin: 25px 0;
}

/*--------------collaps-----------*/
.wrapper {
    width: 70%;
}

@media(max-width:992px) {
    .wrapper {
        width: 100%;
    }
}

.panel-heading {
    padding: 0;
    border: 0;
}

.panel-title>a, .panel-title>a:active {
    display: block;
    padding: 15px;
    color: #555;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-decoration: none;
}

.panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
}

.panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.panel-title a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    text-transform: capitalize !important;
    background-color: #EEEEEE;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
}

.panel-body p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 27px;
    color: #000000;
}

/*------------------contact page-------------*/
.contact_details h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    margin-top: 30px;
}

.contact_details p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
    margin-top: 0;
}

.contact_details h5 strong {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    margin-top: 30px;
}

.contact_details h5 a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
    margin-top: 0;
    margin-left: 1%;
}

.contact_details p strong {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    margin-top: 30px;
}

.contact_details p a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
    margin-top: 0;
    margin-left: 1%;
}

/*----------privacy policy-----------*/
.Policy_trx h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    margin-top: 30px;
}

.Policy_trx p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
    margin-top: 0;
}

.toggle_btn input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.toggle_btn label {
    cursor: pointer;
    text-indent: -9999px;
    width: 50px;
    height: 22px;
    background: #0d1608;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    top: 15px;
}

.toggle_btn {
    background-color: #f8f8fb;
    padding: 20px;
    margin: 50px 0;
}

.toggle_btn label:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.toggle_btn input:checked+label {
    background: #bada55;
}

.toggle_btn input:checked+label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.toggle_btn label:active:after {
    width: 130px;
}

.toggle_btn body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.toggle_btn p {
    text-align: right;
}

.toggle_btn p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    text-align: right;
    color: #000000;
}

.toggle_btn span {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

/*---------------welcome page--------*/
.main_content h5 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    margin-top: 30px;
}

.welcome p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
}

.col-sm-6.t_left a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    align-items: center;
    color: #FFFFFF !important;
    background: #0064A8;
    border-radius: 4px;
    text-align: center;
    display: block;
    padding: 10px;
    margin-bottom: 20px;
    margin: 20px 0;
}

.w-login {
    background: #EEEEEE;
    padding: 20px;
}

.w-login form h5 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    color: #0064A8;
}

.w-login form .form-group {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

.w-login a small {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px !important;
    line-height: 50px;
    text-decoration-line: underline !important;
    color: #000000 !important;
}

.form-control:focus {
    border-color: #ccc !important;
    box-shadow: none !important;
}

.w-login label {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px !important;
    line-height: 36px;
    color: #000000 !important;
}

.form-group p {
    font-size: 14px;
}

.m_submit {
    background: #999999 !important;
    border-radius: 4px;
    border: none !important;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    display: block;
    width: 100%;
    padding: 12px;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: none !important;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none !important;
}

button.btn.btn-primary.m_submit.bg-blue {
    background-color: #0064a8 !important;
    margin-top: 20px;
}

/*----------------login page--------*/
.form_head h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    margin: 0 !important;
}

ul.list_type li.active {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 42px;
    display: flex;
    align-items: center;
    color: #000000;
}

ul.list_type li.active strong {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 31px;
    line-height: 42px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    margin: 0 20px 0 18px;
}

ul.list_type li {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 31px;
    line-height: 42px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    margin: 0 0 20px;
}

.active i.fa.fa-circle-o {
    color: #0099d8;
}

ul.list_type li i {
    color: #F8F8E8;
    font-size: 15px;
    margin-top: 14px;
}

ul.list_type li strong {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 31px;
    line-height: 42px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    margin: 0 20px 0 18px;
}

ul.list_type li span {
    text-align: left;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #000000;
    margin: 0 !important;
}

ul.list_type li a {
    display: inline-flex;
}

.cancel_btn {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    display: block;
    background: #EEEEEE;
    border-radius: 4px;
    color: #202020;
    text-align: center;
    padding: 10px;
    text-transform: capitalize;
    width: 60%;
    margin: 40% auto 0 0;
    cursor: pointer;
}

.loin-form-text h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    color: #000000;
}

.loin-form-text p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 27px;
    color: #000000;
}

.loin-form-text span {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    color: #000000;
}

/*-----------------login form------------*/
.loin-form-text div.wrap {
    vertical-align: middle;
}

.loin-form-text .wrap div {
    position: relative;
    margin: 8px 0;
}

.loin-form-text label {
    position: absolute;
    top: 0;
    margin: 7px 14px 0;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
}

.loin-form-text .active {
    top: -25px;
    font-size: 12px;
}

.loin-form-text input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    border-radius: 4px;
    height: 46px;
    padding: 10px;
}

.loin-form-text input:focus {
    outline: none;
}

select#inputState {
    /* height: 50px; */
    height: 46px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    /* font-size: 12px; */
    /* line-height: 12px; */
    font-size: inherit;
    line-height: inherit;
}

button.btn.btn-primary.next {
    background-color: #0064A8 !important;
    border-color: #0064A8 !important;
    float: right;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
}

.form_head h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form_style.mt-5.form_head {
    margin-top: 10% !important;
}

/*----------create-2----------------*/
i.fa.fa-check-circle.green {
    color: green;
}

.yes {
    text-align: left !important;
    margin: -8px 70px !important;
}

.loin-form-text p {
    margin-bottom: 0 !important;
    display: inline-block;
}

.col-md-6.next_tab label {
    margin: 0;
}

.t-right p {
    text-align: right !important;
    float: right;
}

.toggle_btn.bg_white {
    background: none;
    padding: 0px;
}

.toggle_btn.bg_white label {
    background: #000;
    margin: 0 20px;
}

.Cancle-btn a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    display: block;
    background: #EEEEEE;
    border-radius: 4px;
    color: #202020;
    text-align: center;
    padding: 10px;
    text-transform: capitalize;
    width: 50%;
    cursor: pointer;
    text-decoration: none !important;
}

.form-row .Cancle-btn a {
    text-decoration: none !important;
}

button.btn.btn-primary.next {
    margin-right: 20px;
}

/*---------------3rd create--------------------*/
i.fa.fa-circle-o {
    color: #0099d8;
}

.create_Acc p {
    display: block;
}

.creat_1 p {
    display: block;
}

.small p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

.loin-form-text.create_Acc h6 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    color: #000000;
}

.loin-form-text.create_Acc ul li {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

.loin-form-text.create_Acc ul li {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 35px;
    color: #000000;
    padding-left: 25px;
}

.bg_lightgay {
    background: #EEEEEE;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
    padding: 10px 20px;
}

.bg_lightgay i {
    color: #0064A8;
    font-size: 35px;
    margin-top: 15px;
}

.bg_lightgay h6 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 10px;
    text-transform: uppercase;
    color: #000000;
}

.bg_lightgay p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    padding-left: 0;
    margin-bottom: 0;
}

p.note {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 35px;
    color: #000000;
    margin: 30px 0;
}

.form-row a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline !important;
    color: #000000;
}

p.note-2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
}

.nxt_flow p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    margin-top: 20px;
}

/*------flow 2css------------*/
.uploader {
    display: block;
    clear: both;
    margin: 0 auto;
    width: 100%;
}

.uploader label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 0px;
    border: 2px dotted #F10CA3;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    margin: 0;
}

span#file-upload-btn:hover {
    background: none;
    color: #000;
}

.uploader label.hover {
    border: 3px solid #454cad;
    box-shadow: inset 0 0 0 6px #eee;
}

.uploader label.hover #start i.fa {
    transform: scale(0.8);
    opacity: 0.3;
}

.uploader #start {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #start.hidden {
    display: none;
}

.uploader #start i.fa {
    font-size: 50px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
}

.uploader #response {
    float: left;
    clear: both;
    width: 100%;
    margin: 0;
}

.uploader #response.hidden {
    display: none;
}

.uploader #response #messages {
    margin-bottom: 0.5rem;
}

.uploader #file-image {
    display: inline;
    margin: 0 auto 0.5rem auto;
    width: auto;
    height: auto;
    max-width: 180px;
}

.uploader #file-image.hidden {
    display: none;
}

.uploader #notimage {
    display: block;
    float: left;
    clear: both;
    width: 100%;
}

.uploader #notimage.hidden {
    display: none;
}

.uploader progress,
.uploader .progress {
    display: inline;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 180px;
    height: 8px;
    border: 0;
    border-radius: 4px;
    background-color: #eee;
    overflow: hidden;
}

.uploader .progress[value]::-webkit-progress-bar {
    border-radius: 4px;
    background-color: #eee;
}

.uploader .progress[value]::-webkit-progress-value {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
}

.uploader .progress[value]::-moz-progress-bar {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
}

.uploader input[type=file] {
    display: none;
}

.uploader div {
    margin: 0 0 0.5rem 0;
    color: #5f6982;
}

.uploader .btn {
    display: inline-block;
    margin: 0;
    clear: both;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: initial;
    border: none;
    border-radius: 0.2rem;
    outline: none;
    padding: 0 1rem;
    height: 36px;
    line-height: 36px;
    color: #F10CA3;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    background: none;
    cursor: pointer;
}

.add_card a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    text-decoration: none !important;
    color: #0064A8;
}

.wrapper {
    width: 400px;
    margin: 30px auto;
    cursor: pointer;
}

.main-nav {
    position: relative;
}

.main-nav>span {
    position: absolute;
    top: 17px;
    right: 20px;
    cursor: pointer;
}

.wrapper ul {
    display: none;
    margin-top: 0;
    background: #ccc;
    color: #fefefe;
    width: 200px;
    position: absolute;
    right: 46%;
    top: 23px;
    z-index: 9999;
}

.wrapper ul li {
    background: #fff;
    box-shadow: 1px 11px 10px #000;
}

.wrapper ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wrapper ul li a, a:visited {
    text-decoration: none !important;
    padding-left: 0;
    color: #000;
    padding: 15px;
    display: block;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.wrapper ul li a:hover {
    background: rgb(238 238 238);
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.form-row.bg_lightgray {
    background-color: #eee;
    padding: 10px;
}

.form-row.bg_lightgray input {
    background: none !important;
    border: none;
}

/*.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}*/
i.fa.fa-trash.delete_btn {
    position: absolute;
    right: 79px;
    font-size: 25px;
    top: 4px;
    color: #0064a8;
    border-left: 1px solid#000;
    padding: 0 20px;
}

.wrapper.center-block {
    width: 70%;
    margin: 0px auto 0 0;
}

.form-group.col-md-12.card_add a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #0064A8;
    text-decoration: none !important;
    cursor: pointer;
}

.form-group.col-md-12.card_add a i {
    margin-right: 10px;
}

.form-group.col-md-6.flex_row {
    margin-top: 20px;
}

.bg_light {
    background-color: #EEEEEE;
    padding: 20px;
    margin-top: 12px;
}

.bg_light p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px !important;
}

.bg_light h3 {
    background-color: #0064a8;
    padding: 6px 10px;
}

.bg_light h3 {
    background-color: #0064a8;
    padding: 6px 10px;
    height: 40px;
    margin: 0;
}

.bg_light h3 small {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 40px;
    text-align: right;
    color: #FFFFFF;
    float: right;
}

.loin-form-text span {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    color: #222;
}

.top_head p {
    margin-bottom: 0;
}

.bg_light a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #0064A8;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    padding: 12px;
}

.bg_light a i {
    margin-right: 10px;
}

.bg_light h4 {
    background-color: #ffffff;
    padding: 6px 10px;
    height: 40px;
    margin: 0;
}

.bg_light h4 span {
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    color: #000;
    float: left;
}

.bg_light h4 small {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 40px;
    text-align: right;
    color: #000;
    float: right;
}

.bg_white {
    padding: 25px;
    background-color: #fff;
}

.bg_white span {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}

.bg_white i {
    color: #0064a8;
    font-size: 40px;
    margin-top: 20px;
}

.bg-graylight {
    background-color: #EEEEEE;
    padding: 20px;
    margin-top: 20px;
}

.bg-graylight .bg_light {
    padding: 0;
}

.count_cost p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 0;
    text-align: center;
    color: #000000;
    position: relative;
}

.count_cost h1 {
    text-align: right;
    font-size: 54px;
}

.loin-form-text.ml-1 ul {
    padding-left: 20px;
}

/*-----------------dashboard--------------*/
.main_box table.table tr th {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    color: #333333;
}

.main_box table.table {
    border: none !important;
}

.main_box table.table tr {
    border: none !important;
}

.main_box table.table tr td {
    border: none !important;
    padding: 10px 0;
    font-weight: 500;
    font-family: Roboto;
    font-style: normal;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: 0.1em;
    color: #000000;
}

.main_box .table thead th {
    border: none !important;
    padding: 0;
}

.main_box {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

.main_box h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    background-color: #0064A8;
    padding: 10px;
}

.main_box h2 pre {
    display: inline;
    text-align: right;
    float: right;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.main_box p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    padding: 10px;
}

.main_box table.table {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    margin: 0 10px;
}

section.main {
    padding: 30px 0;
}

.main_box a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #2F80ED;
    padding: 10px 10px 30px;
    display: block;
}

.main_box a img {
    margin-right: 10px;
}

.main_box {
    padding: 0px 0 20px;
}

a.d_btn:hover {
    color: #fff;
}

table.table.data_sp td {
    padding: 20px 0 !important;
}

.main_box table.table.bg-table {
    background-color: #F7F7F7;
    width: 94%;
    margin: 20px auto 0;
}

table.table.bg-table tr td {
    padding: 15px !important;
    font-size: 15px;
}

.table tbody+tbody {
    border-top: none !important;
}

table.table.bg-table tbody tr td strong {
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    float: right;
}

.main_box.side_Section h3 {
    width: 94%;
    margin: auto;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
    background-color: #0064A8;
    padding: 10px;
}

.bg_gray {
    background-color: #EEEEEE;
    width: 90%;
    margin: auto;
    padding: 0 0px 30px;
}

.box_heading {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 12px !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    padding: 0 !important;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px 20px !important;
    width: 94%;
}

table.table.bg-table.mt-0 tr td {
    padding: 10px 20px !important;
}

a.d_btn {
    text-align: center;
    background-color: #0064a8;
    padding: 10px 50px !important;
    width: 90%;
    margin: 25px auto;
    color: #fff !important;
    border-radius: 5px;
}

.bg_gray table {
    background-color: #fff !important;
}

section.main_content {
    padding: 0 0 60px;
}

i.fa.fa-exclamation {
    width: 60px;
    height: 60px;
    background-color: #0064A8;
    text-align: center;
    line-height: 60px;
    color: #fff;
}

h4.panel-title.p-0 a {
    padding: 0;
    border: 2px solid#000;
    background: #FFFFFF;
    box-sizing: border-box;
}

h4.panel-title.p-0 a strong {
    position: relative;
    left: 20px;
    top: -10px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}

h4.panel-title.p-0 a span {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 1px;
    color: #000000;
    position: absolute;
    margin-top: -22px;
    margin-left: 80px;
}

section.collapse_down {
    padding: 40px 0 0px;
}

.before_none.panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
    padding: 18px 30px;
}

.collapse_data span {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 12px;
    color: #000000;
    margin-top: 0;
    margin-left: 80px;
}

.collapse_data p {
    font-family: Roboto;
    font-style: normal;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #000000;
    margin: 30px 7% 0;
}

.collapse_data {
    margin-top: 0;
    border-top: 2px solid#040404;
}

.collapse_data span {
    margin-top: 10px !important;
}

.outter-box {
    background: #EEEEEE;
    padding: 30px;
}

.outter-box h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}

.outter-box ul {
    display: flex;
}

.main_box.main_box a {
    font-family: Roboto;
    font-style: normal;
    padding: 10px 10px 0px;
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #0064A8;
}

a.active-1 {
    background: #2863A3;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF !important;
    padding: 10px !important;
}

.main_box.listing_category ul li a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    color: #000000;
    border-bottom: 1px solid;
}

.outter-txt h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.outter-txt p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    margin-bottom: 0;
}

.col-md-12.text_area input {
    height: 120px;
}

.col-md-12.submit_btn a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    background-color: #2863a3;
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none !important;
    border-radius: 4px;
}

.col-md-12.top_head h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 0;
}

.t-right h4 {
    text-align: right;
}

.btn {
    margin-top: 5px;
}




.open {
    visibility: visible;
    transition-delay: 0.2s;
}

.closed {
    visibility: hidden;
    transition-delay: 0.5s;
}

div#droptrigger {
    text-align: right;
    float: right;
    background: none;
    border: none;
    color: #222;
    font-size: 30px;
    padding-bottom: 0;
}

.col-sm-6.t-left a i {
    color: #222;
    font-size: 30px;
    padding: 24px 0 0;
}

.outter-box ul {
    display: flex;
    position: absolute;
    right: 0;
    top: 58px;
    width: 60%;
    z-index: 9;
}

li.list-group-item a {
    color: #222;
    display: block;
}

.outter-box.outter-p {
    padding: 20px 20px 20px;
}

button.btn.flot-right {
    background-color: #2863a3;
    color: #fff;
    float: right;
    margin-top: 20px;
}

.form-group.col-md-12.pdf_download a i {
    color: #E15F78;
    margin-right: 10px;
}

.form-group.col-md-12.pdf_download a {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    float: right;
    text-decoration: none !important;
}

.form-group.col.liner p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}

.form-group.col.liner p:before {
    content: "";
    width: 82%;
    height: 1px;
    background: rgb(0 0 0 / 83%);
    position: absolute;
    top: 4px;
    right: 0;
    transition: all .8s ease 0s;
}

.bg_blue {
    background-color: #2863a3;
    padding: 10px;
}

.outter-box .bg_blue h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    margin-top: 10px;
    line-height: 10px;
}

.form-group.col.note_txt h6 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
}

.form-group.col.note_txt p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
}

.form-group.col-4.pdf_download.mt-5 a i {
    color: #E15F78;
    margin-right: 10px;
}

.form-group.col-4.pdf_download.mt-5 a {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    text-decoration: none !important;
}

.account-close h6 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
}

.account-close p {
    font-family: Roboto;
    font-style: normal;
    font-size: 16px;
    color: #000000;
}

.account-close span {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #222;
    margin-top: 30px;
    display: inline-block;
}

form.checkbox_history {
    padding: 20px 20px 1px;
}

form.checkbox_history span {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    color: #212529;
    position: absolute;
    left: 90px;
}

form.checkbox_history p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #212529;
    letter-spacing: 0;
    margin-top: 30px;
    padding-left: 30px;
    text-transform: capitalize;
}

.col-sm-6.btn-1 button {
    background: #0064A8;
    border-radius: 4px;
    display: block;
    width: 100%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
}

.col-sm-6.btn-2 button {
    background: #fff;
    border-radius: 4px;
    display: block;
    width: 100%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #222;
    border: 1px solid#ccc;
}

.btn.focus, .btn:focus {
    box-shadow: none !important;
}

.col-md-12.btn button {
    background-color: #2863a3;
    color: #fff;
    float: right;
    padding: 10px 40px;
}

nav {
    position: relative;
}

a.dropdown-toggle {
    font-size: 18px;
    padding-top: 7px;
    display: block;
}

.dropdown-toggle::after {
    display: none !important;
}

.form-row.bg_lightgray ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 0.5em;
    min-width: 12em;
    padding: 20px;
    border-radius: 0 0 0.2em 0.2em;
    background-color: #eee;
    z-index: 9;
}

ul.dropdown li {
    list-style-type: none;
}

ul.dropdown li a {
    text-decoration: none;
    padding: 0.5em 1em;
    display: block;
    text-decoration: none !important;
    text-transform: capitalize;
}

.form-row.bg_lightgray nav ul li {
    float: none !important;
}

.form-row.bg_lightgray nav ul li a:hover, nav ul li a:visited:hover {
    color: #222 !important;
}

input:focus, select:focus {
    background-color: aliceblue !important;
}


@media screen and (max-width: 768px) {
    body {
        min-width: 0 !important;
    }
}