html {
    font-size: 16px;
}

body {
    font-family: 'Rubik', sans-serif!important;
    text-rendering: optimizelegibility;
    background: #ffffff;
    color: #1e2022;
}

main {
    position: relative;
    overflow: hidden;
}

p {
    color: #77838f;
    line-height: 1.7;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a,
.h1>a,
.h2>a,
.h3>a,
.h4>a,
.h5>a,
.h6>a {
    color: #1e2022;
}

h1>a:hover,
h2>a:hover,
h3>a:hover,
h4>a:hover,
h5>a:hover,
h6>a:hover,
.h1>a:hover,
.h2>a:hover,
.h3>a:hover,
.h4>a:hover,
.h5>a:hover,
.h6>a:hover {
    color: #1164ff;
}

h1.text-white>a,
h2.text-white>a,
h3.text-white>a,
h4.text-white>a,
h5.text-white>a,
h6.text-white>a,
.h1.text-white>a,
.h2.text-white>a,
.h3.text-white>a,
.h4.text-white>a,
.h5.text-white>a,
.h6.text-white>a {
    color: #fff;
}

figure {
    margin-bottom: 0;
}

svg {
    margin-bottom: -0.4375rem;
    vertical-align: baseline;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
}


/*------------------------------------
  Highlight Color
------------------------------------*/

::-moz-selection {
    color: #fff;
    background-color: #377dff;
}

::selection {
    color: #fff;
    background-color: #377dff;
}

.bg-primary ::-moz-selection {
    color: #377dff;
    background-color: #fff;
}

.bg-primary ::selection {
    color: #377dff;
    background-color: #fff;
}


/*------------------------------------
  Animate.css
------------------------------------*/

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.alert-text {
    color: inherit;
}

.btn {
    cursor: pointer;
}

.dropdown-menu {
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 15px rgba(55, 125, 255, 0.075), 0 5px 15px rgba(119, 131, 143, 0.075);
}

.dzsparallaxer {
    color: inherit;
}

.fancybox-slide.has-animation {
    display: block;
}

.fancybox-is-sliding .fancybox-slide.has-animation,
.fancybox-slide--current.has-animation,
.fancybox-slide--next.has-animation,
.fancybox-slide--previous.has-animation {
    display: none;
}

.fancybox-is-sliding .fancybox-slide.has-animation.animated,
.fancybox-slide--current.has-animation.animated,
.fancybox-slide--next.has-animation.animated,
.fancybox-slide--previous.has-animation.animated {
    display: block;
}

.u-blur-30 {
    -webkit-filter: blur(30px);
    filter: blur(30px);
}


/*------------------------------------
  Fileuploader
------------------------------------*/


/* Default Style */

.fileuploader {
    margin-top: 0;
}


/* Front Style */

.u-fileuploader-input {
    display: block;
    cursor: pointer;
    background: #fff;
    border: 2px dashed #e7eaf3;
    border-radius: 0.25rem;
    padding: 2rem 0;
    text-align: center;
}

.u-fileuploader-input__icon {
    display: block;
    color: #377dff;
    font-size: 2.5rem;
}


/* Dragging State */

.u-fileuploader-input__inner,
.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__icon {
    transition: all 0.3s ease-in-out;
}

.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__inner {
    opacity: .6;
}

.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__icon {
    -webkit-transform: translateY(18px);
    transform: translateY(18px);
}

.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__btn {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
}

[data-lazy] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slick-cloned [data-scs-animation-in] {
    opacity: 0;
}

.u-slick .js-next,
.u-slick .js-prev {
    opacity: 0;
}

.u-slick.slick-initialized {
    background: none;
}

.u-slick.slick-initialized .js-slide,
.u-slick.slick-initialized .js-thumb {
    visibility: visible;
    height: auto;
    overflow: visible;
}

.u-slick.slick-initialized .js-next,
.u-slick.slick-initialized .js-prev {
    opacity: 1;
}

.u-slick .js-slide,
.u-slick .js-thumb {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

.u-slick .js-slide:first-child,
.u-slick .js-thumb:first-child {
    height: auto;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*------------------------------------
  List
------------------------------------*/

.u-list .disabled,
.u-list:disabled {
    color: #8c98a4;
}

.u-list .active .droplist-link {
    color: #377dff;
}

.u-list--air .disabled,
.u-list--air:disabled {
    background-color: rgba(140, 152, 164, 0.1);
}

.u-list--air .active .droplist-link,
.u-list--air .active.droplist-link {
    background-color: rgba(55, 125, 255, 0.1);
    color: #377dff;
}

.u-list--light .droplist-link {
    color: #77838f;
}

.u-list--light .droplist-link:hover {
    color: #377dff;
}


/*------------------------------------
  Header Default
------------------------------------*/

.main-header {
    position: relative;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    position: fixed !important;
}

.header-section {
    position: relative;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(130, 130, 134, 0.1);
}


/* Topbar Nav Link */

.top-header-nav-link {
    /*font-weight: 400;*/
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    cursor: pointer;
    font-size: 12px;
    border: 0;
    /*color: #fff !important;*/
    /*padding: 8px 12px;*/
    display: inline-block;
    font-weight: 500;
    color: #333 !important;
    padding: 5px 12px;
}

.top-header-nav-link:hover {
    color: #1e2022;
}


/* Navbar */

.header-navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
}

.header-navbar-brand {
    width: 230px;
    padding-top: 0;
    padding-bottom: 0;
}

.header-navbar-nav {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}


/* Nav Link */

.main-header .active>.main-header__nav-link {
    color: #377dff;
    font-size: 14px !important;
}

.main-header__nav-link {
    color: #5a5f69;
}

.main-header__nav-link-icon {
    font-size: 0.625rem;
    margin-left: 0.25rem;
    transition: all 0.3s ease;
}


/* Hide Content */

.main-header.js-header-fix-moment .top-header-content {
    display: none;
}


/* Header Fix Top */

.main-header--fix-top {
    position: fixed;
}

.main-header.main-header--fix-top[data-effect-compensation] {
    transition: none;
}

.main-header--invisible {
    display: none;
}

.main-header--moved-up {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.main-header--faded {
    opacity: 0;
    visibility: hidden;
}

.header-section--hidden {
    position: relative;
}

.main-header[data-header-fix-effect] {
    transition: 0.3s ease;
}

.main-header.main-header--untransitioned {
    transition: none;
}

.main-header.js-header-fix-moment {
    position: fixed;
    top: 0;
    bottom: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1220px !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (max-width: 767px) {}

.navbar-expand {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.navbar-expand.header-navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-expand .header-navbar-nav {
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-expand .navbar-nav .main-header__nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
}

.navbar-expand .navbar-nav .main-header__sub-menu {
    border-top-width: 0.1875rem;
    border-top-style: solid;
    border-top-color: #377dff;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
}

.navbar-expand .navbar-nav .main-header__sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
}

.navbar-expand .navbar-nav .main-header__sub-menu-offset {
    margin-top: -1.1875rem;
}

.navbar-expand .navbar-nav .main-header__sub-menu .hs-has-sub-menu {
    padding: 0;
}

.navbar-expand .main-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
    right: 20%;
}

.navbar-expand .main-header__mega-menu-wrapper-v1 {
    padding-top: 2.1875rem;
    padding-bottom: 2.1875rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .navbar-expand-sm.header-navbar {
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-sm .header-navbar-nav {
        -ms-flex-align: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-sm .navbar-nav .main-header__nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-right: 0.875rem;
        padding-left: 0.875rem;
    }
    .navbar-expand-sm .navbar-nav .main-header__sub-menu {
        border-top-width: 0.1875rem;
        border-top-style: solid;
        border-top-color: #377dff;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
    }
    .navbar-expand-sm .navbar-nav .main-header__sub-menu-nav-link {
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }
    .navbar-expand-sm .navbar-nav .main-header__sub-menu-offset {
        margin-top: -1.1875rem;
    }
    .navbar-expand-sm .navbar-nav .main-header__sub-menu .hs-has-sub-menu {
        padding: 0;
    }
    .navbar-expand-sm .main-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
        right: 20%;
    }
    .navbar-expand-sm .main-header__mega-menu-wrapper-v1 {
        padding-top: 2.1875rem;
        padding-bottom: 2.1875rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .navbar-expand-md.header-navbar {
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-md .header-navbar-nav {
        -ms-flex-align: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-md .navbar-nav .main-header__nav-link {
        padding-top: 25px;
        padding-bottom: 25px;
        padding-right: 20px;
        padding-left: 20px;
    }
    .navbar-expand-md .navbar-nav .main-header__sub-menu {
        border-top-width: 0.1875rem;
        border-top-style: solid;
        border-top-color: #377dff;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
    }
    .navbar-expand-md .navbar-nav .main-header__sub-menu-nav-link {
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }
    .navbar-expand-md .navbar-nav .main-header__sub-menu-offset {
        margin-top: -1.1875rem;
    }
    .navbar-expand-md .navbar-nav .main-header__sub-menu .hs-has-sub-menu {
        padding: 0;
    }
    .navbar-expand-md .main-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
        right: 20%;
    }
    .navbar-expand-md .main-header__mega-menu-wrapper-v1 {
        padding-top: 2.1875rem;
        padding-bottom: 2.1875rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .navbar-expand-lg.header-navbar {
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-lg .header-navbar-nav {
        -ms-flex-align: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-lg .navbar-nav .main-header__nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-right: 0.875rem;
        padding-left: 0.875rem;
    }
    .navbar-expand-lg .navbar-nav .main-header__sub-menu {
        border-top-width: 0.1875rem;
        border-top-style: solid;
        border-top-color: #377dff;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
    }
    .navbar-expand-lg .navbar-nav .main-header__sub-menu-nav-link {
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }
    .navbar-expand-lg .navbar-nav .main-header__sub-menu-offset {
        margin-top: -1.1875rem;
    }
    .navbar-expand-lg .navbar-nav .main-header__sub-menu .hs-has-sub-menu {
        padding: 0;
    }
    .navbar-expand-lg .main-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
        right: 20%;
    }
    .navbar-expand-lg .main-header__mega-menu-wrapper-v1 {
        padding-top: 2.1875rem;
        padding-bottom: 2.1875rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .navbar-expand-xl.header-navbar {
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-xl .header-navbar-nav {
        -ms-flex-align: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-xl .navbar-nav .main-header__nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-right: 0.875rem;
        padding-left: 0.875rem;
    }
    .navbar-expand-xl .navbar-nav .main-header__sub-menu {
        border-top-width: 0.1875rem;
        border-top-style: solid;
        border-top-color: #377dff;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
    }
    .navbar-expand-xl .navbar-nav .main-header__sub-menu-nav-link {
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }
    .navbar-expand-xl .navbar-nav .main-header__sub-menu-offset {
        margin-top: -1.1875rem;
    }
    .navbar-expand-xl .navbar-nav .main-header__sub-menu .hs-has-sub-menu {
        padding: 0;
    }
    .navbar-expand-xl .main-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
        right: 20%;
    }
    .navbar-expand-xl .main-header__mega-menu-wrapper-v1 {
        padding-top: 2.1875rem;
        padding-bottom: 2.1875rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 575px) {
    .navbar-expand-sm .main-header__nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
    .navbar-expand-sm .main-header__nav-link-icon {
        margin-left: auto;
    }
    .navbar-expand-sm .hs-mega-menu-opened .main-header__nav-link-icon,
    .navbar-expand-sm .hs-sub-menu-opened .main-header__nav-link-icon {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .navbar-expand-sm .hs-sub-menu-opened>.main-header__sub-menu-nav-link .main-header__sub-menu-nav-link-icon {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .navbar-expand-sm .main-header__sub-menu {
        border-left-width: 0.1875rem;
        border-left-style: solid;
        border-left-color: #377dff;
    }
    .navbar-expand-sm .main-header__sub-menu .hs-has-sub-menu {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-sm .main-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
        -webkit-animation: none;
        animation: none;
    }
}

@media (max-width: 767px) {
    .navbar-expand-md .main-header__nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
    .navbar-expand-md .main-header__nav-link-icon {
        margin-left: auto;
    }
    .navbar-expand-md .hs-mega-menu-opened .main-header__nav-link-icon,
    .navbar-expand-md .hs-sub-menu-opened .main-header__nav-link-icon {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .navbar-expand-md .hs-sub-menu-opened>.main-header__sub-menu-nav-link .main-header__sub-menu-nav-link-icon {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .navbar-expand-md .main-header__sub-menu {
        border-left-width: 0.1875rem;
        border-left-style: solid;
        border-left-color: #377dff;
    }
    .navbar-expand-md .main-header__sub-menu .hs-has-sub-menu {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-md .main-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
        -webkit-animation: none;
        animation: none;
    }
}

@media (max-width: 991px) {
    .navbar-expand-lg .main-header__nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
    .navbar-expand-lg .main-header__nav-link-icon {
        margin-left: auto;
    }
    .navbar-expand-lg .hs-mega-menu-opened .main-header__nav-link-icon,
    .navbar-expand-lg .hs-sub-menu-opened .main-header__nav-link-icon {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .navbar-expand-lg .hs-sub-menu-opened>.main-header__sub-menu-nav-link .main-header__sub-menu-nav-link-icon {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .navbar-expand-lg .main-header__sub-menu {
        border-left-width: 0.1875rem;
        border-left-style: solid;
        border-left-color: #377dff;
    }
    .navbar-expand-lg .main-header__sub-menu .hs-has-sub-menu {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-lg .main-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
        -webkit-animation: none;
        animation: none;
    }
}

@media (max-width: 1199px) {
    .navbar-expand-xl .main-header__nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
    .navbar-expand-xl .main-header__nav-link-icon {
        margin-left: auto;
    }
    .navbar-expand-xl .hs-mega-menu-opened .main-header__nav-link-icon,
    .navbar-expand-xl .hs-sub-menu-opened .main-header__nav-link-icon {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .navbar-expand-xl .hs-sub-menu-opened>.main-header__sub-menu-nav-link .main-header__sub-menu-nav-link-icon {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .navbar-expand-xl .main-header__sub-menu {
        border-left-width: 0.1875rem;
        border-left-style: solid;
        border-left-color: #377dff;
    }
    .navbar-expand-xl .main-header__sub-menu .hs-has-sub-menu {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-expand-xl .main-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
        -webkit-animation: none;
        animation: none;
    }
}

.navbar-expand .main-header__nav-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-expand .main-header__nav-link-icon {
    margin-left: auto;
}

.navbar-expand .hs-mega-menu-opened .main-header__nav-link-icon,
.navbar-expand .hs-sub-menu-opened .main-header__nav-link-icon {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.navbar-expand .hs-sub-menu-opened>.main-header__sub-menu-nav-link .main-header__sub-menu-nav-link-icon {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.navbar-expand .main-header__sub-menu {
    border-left-width: 0.1875rem;
    border-left-style: solid;
    border-left-color: #377dff;
}

.navbar-expand .main-header__sub-menu .hs-has-sub-menu {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-expand .main-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
    -webkit-animation: none;
    animation: none;
}

@media (min-width: 576px) and (max-width: 991px) {
    .main-header:not(.main-header--full-container) .navbar-expand-sm .header-navbar-brand {
        padding-top: 1rem;
    }
    .main-header:not(.main-header--full-container) .navbar-expand-sm .header-navbar-brand-top-space {
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-sm .main-header__mega-menu-wrapper-v2 {
        padding-right: 2.5rem;
    }
    .navbar-expand-sm .main-header__mega-menu-wrapper-v3 {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-header:not(.main-header--full-container) .navbar-expand-md .header-navbar-brand {
        padding-top: 1rem;
    }
    .main-header:not(.main-header--full-container) .navbar-expand-md .header-navbar-brand-top-space {
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    [class*="navbar-expand"]:not(.navbar-expand-xl) {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .main-header__mega-menu-wrapper-v2 {
        padding-right: 2.5rem;
    }
    .navbar-expand-lg .main-header__mega-menu-wrapper-v3 {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl .main-header__mega-menu-wrapper-v2 {
        padding-right: 2.5rem;
    }
    .navbar-expand-xl .main-header__mega-menu-wrapper-v3 {
        padding-right: 0;
        padding-left: 0;
    }
}

[class*="main-header--floating"].js-header-fix-moment {
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(130, 130, 134, 0.1);
    margin-top: 0;
}


/* Small devices */

@media (min-width: 576px) {}

@media (max-width: 575px) {}


/* Medium devices */

@media (min-width: 768px) {}

@media (max-width: 767px) {}


/* Large devices */

@media (min-width: 992px) {}

@media (max-width: 991px) {}


/* Extra Large devices */

@media (min-width: 1200px) {}

@media (max-width: 1199px) {}

[class*="main-header--floating"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 24px;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {
    .main-header-top-for-md,
    .main-header--abs-bottom-md,
    .main-header--abs-top-2nd-screen-md {
        position: absolute;
    }
    .main-header-top-for-md {
        top: 0;
        bottom: auto;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

[class*="main-header--abs"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 24px;
}


/* Disable box-shadow on mobile device */

.main-header--abs-top-2nd-screen:not(.js-header-fix-moment) [class*="navbar-expand"] .navbar-nav .main-header__sub-menu,
.main-header--abs-bottom:not(.js-header-fix-moment) [class*="navbar-expand"] .navbar-nav .main-header__sub-menu {
    box-shadow: none;
}

@-webkit-keyframes absoluteSlideInUp {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes absoluteSlideInUp {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}


/* Disable box-shadow on mobile device */

.main-header--sticky-bottom:not(.js-header-fix-moment) [class*="navbar-expand"] .navbar-nav .main-header__sub-menu {
    box-shadow: none;
}

@-webkit-keyframes stickySlideInUp {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes stickySlideInUp {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
}

[class*="u-badge-border"] {
    border-style: solid;
    border-width: 2px;
    line-height: 1.4;
}


/* Positions */

.u-badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.u-btn-success:hover,
.u-btn-success:focus,
.u-btn-success:active {
    box-shadow: 0 4px 17px rgba(0, 201, 167, 0.35);
}

.u-btn-primary--air {
    color: #377dff;
    background: rgba(55, 125, 255, 0.1);
    border-color: transparent;
}

.u-btn-primary--air:hover,
.u-btn-primary--air:focus,
.u-btn-primary--air:active,
.u-btn-primary--air.active {
    color: #fff;
    background: #377dff;
    box-shadow: 0 4px 17px rgba(55, 125, 255, 0.35);
}

.u-btn-secondary--air {
    color: #77838f;
    background: rgba(119, 131, 143, 0.1);
    border-color: transparent;
    /* margin-left: 5px; */
}

.u-btn-secondary--air:hover,
.u-btn-secondary--air:focus,
.u-btn-secondary--air:active,
.u-btn-secondary--air.active {
    color: #fff;
    background: #77838f;
    box-shadow: 0 4px 17px rgba(119, 131, 143, 0.35);
    border-radius: 0px;
}

.u-btn-success--air {
    color: #7d4e7c;
    background: rgba(125, 78, 124, 0.3);
    border-color: transparent;
}

.u-btn-success--air:hover,
.u-btn-success--air:focus,
.u-btn-success--air:active,
.u-btn-success--air.active {
    color: #fff;
    background: #7d4e7c;
    box-shadow: 0 4px 17px rgba(125, 78, 124, 1);
}


/* Extra Small */
.upload_transcript .loader-container{   
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 999;
    background: #2f2f2f14;
    top: 0;
    height: 100% ! important;
    margin-top: 0 !important;
}
.upload_transcript  .loader{
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 60px!important;
  height: 60px!important;
}
.btn-xs {
    font-size: 0.6875rem;
    font-weight: 400;
    padding: 0.4375rem 0.9375rem;
}
.btn-xs:last-child {
   margin: 0;
}
.btn-sm {
    padding: 6px 9px!important;
    font-size: 12px;
        margin-left: 5px;
}

.btn-md {
    padding: 8px 25px!important;
    font-size: 13px;
}

.u-sidebar[aria-labelledby] {
    opacity: 0;
}

.u-sidebar[aria-labelledby][role="tabpanel"] {
    opacity: 1;
}

.u-sidebar[aria-labelledby].u-unfold--css-animation,
.u-sidebar[aria-labelledby].u-unfold--jquery-slide {
    opacity: 1;
}

.u-sidebar.u-unfold--css-animation.u-unfold--hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {}


/*------------------------------------
  Unfold (Drop Down)
------------------------------------*/


/* Disable content revealing on page load */

.u-unfold[aria-labelledby] {
    opacity: 0;
}

.u-unfold[aria-labelledby][role="tabpanel"] {
    opacity: 1;
}

.u-unfold[aria-labelledby].u-unfold--css-animation,
.u-unfold[aria-labelledby].u-unfold--jquery-slide {
    opacity: 1;
}

.u-unfold.u-unfold--css-animation.u-unfold--hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.u-unfold--css-animation.u-unfold--hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.u-unfold {
    position: absolute;
    z-index: 99;
    min-width: 180px;
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 5px 15px rgba(55, 125, 255, 0.075), 0 5px 15px rgba(119, 131, 143, 0.075);
    padding: 1rem 1.5rem;
    border: none;
    margin-bottom: 0;
}

.u-unfold-wrapper {
    color: #77838f;
    font-weight: 300;
    font-size: 0.875rem;
}

.u-unfold-wrapper:hover {
    color: #1e2022;
}

.u-unfold-wrapper--light {
    color: #8f95a0;
}

.u-unfold-wrapper--light:hover {
    color: #fff;
}

.u-unfold__icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 1.0625rem;
    margin-right: 0.5rem;
}

.u-unfold__icon-pointer {
    font-size: 0.625rem;
    vertical-align: middle;
    margin-left: 0.25rem;
}


/*------------------------------------
  Unfold (Drop Down) - Country
------------------------------------*/

.u-unfold--country {
    box-shadow: 0 0 50px rgba(41, 74, 133, 0.2);
    padding: 0;
    margin-bottom: 2rem;
}

.u-unfold--country__link {
    display: block;
    background-color: #f6f9fc;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.u-unfold--country__content {
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .u-unfold--country {
        min-width: 28.125rem;
    }
}


/*------------------------------------
  Divider
------------------------------------*/

.u-divider {
    position: relative;
    display: inline-block;
}

.u-divider::before,
.u-divider::after {
    position: absolute;
    top: 50%;
    content: "";
}

.u-divider::before {
    right: 100%;
    background-image: linear-gradient(45deg, transparent 0%, #bfc3ca 100%);
    background-repeat: repeat-x;
}

.u-divider::after {
    left: 100%;
    background-image: linear-gradient(45deg, #bfc3ca 0%, transparent 100%);
    background-repeat: repeat-x;
}


/*------------------------------------
  Divider Sizes
------------------------------------*/


/* Extra Small */

.u-divider--xs {
    font-size: 0.75rem;
}

.u-divider--xs::before,
.u-divider--xs::after {
    width: 2rem;
    height: 0.0625rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.u-divider--xs::before {
    margin-right: 0.625rem;
}

.u-divider--xs::after {
    margin-left: 0.625rem;
}

.u-divider--xs::before,
.u-divider--xs::after {
    width: 2rem;
}


/*------------------------------------
  Divider Styles
------------------------------------*/


/* Text */

.u-divider--text {
    color: #8c98a4;
}


/*------------------------------------
  Vertical Divider
------------------------------------*/

.u-datatable .opened .u-datatable__trigger-icon::before {
    content: "\f106";
}


/*------------------------------------
  DatePicker
------------------------------------*/

.u-datepicker {
    position: relative;
}

.u-datepicker .flatpickr-calendar {
    top: 3.75rem !important;
    left: 0 !important;
    box-shadow: 0 0.15rem 1rem 0.05rem rgba(140, 152, 164, 0.135);
}

.u-datepicker .flatpickr-calendar::before,
.u-datepicker .flatpickr-calendar::after {
    display: none;
}

.u-datepicker .flatpickr-months {
    position: relative;
    background-color: #377dff;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 0.75rem;
}

.u-datepicker .flatpickr-months .cur-month,
.u-datepicker .flatpickr-months .cur-year {
    color: #fff;
}

.u-datepicker .flatpickr-current-month,
.u-datepicker .flatpickr-prev-month,
.u-datepicker .flatpickr-next-month {
    padding: 0;
}

.u-datepicker .flatpickr-prev-month,
.u-datepicker .flatpickr-next-month {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.u-datepicker .flatpickr-prev-month.flatpickr-prev-month,
.u-datepicker .flatpickr-next-month.flatpickr-prev-month {
    left: 0.75rem;
}

.u-datepicker .flatpickr-prev-month.flatpickr-next-month,
.u-datepicker .flatpickr-next-month.flatpickr-next-month {
    right: 0.75rem;
}

.u-datepicker .flatpickr-prev-month svg,
.u-datepicker .flatpickr-next-month svg {
    fill: rgba(255, 255, 255, 0.7);
}

.u-datepicker .flatpickr-prev-month:hover svg,
.u-datepicker .flatpickr-next-month:hover svg {
    fill: #fff;
}

.u-datepicker .flatpickr-weekday {
    color: #1e2022;
    text-transform: uppercase;
    font-weight: 500;
}

.u-datepicker .flatpickr-day {
    color: #1e2022;
    border-color: transparent;
}

.u-datepicker .flatpickr-day:focus,
.u-datepicker .flatpickr-day:hover {
    color: #377dff;
    background-color: rgba(55, 125, 255, 0.1);
}

.u-datepicker .flatpickr-day.inRange {
    background-color: #e7eaf3;
    box-shadow: -5px 0 0 #e7eaf3, 5px 0 0 #e7eaf3;
}

.u-datepicker .flatpickr-day.today {
    color: #fff;
    background-color: #377dff;
}

.u-datepicker .flatpickr-day.prevMonthDay,
.u-datepicker .flatpickr-day.nextMonthDay {
    color: #e7eaf3;
}

.u-datepicker .flatpickr-day.prevMonthDay:focus,
.u-datepicker .flatpickr-day.prevMonthDay:hover,
.u-datepicker .flatpickr-day.nextMonthDay:focus,
.u-datepicker .flatpickr-day.nextMonthDay:hover {
    color: #97a4af;
    background-color: #e7eaf3;
}

.u-datepicker .flatpickr-day.disabled {
    color: #e7eaf3;
}

.u-datepicker .flatpickr-day.disabled:hover {
    color: #97a4af;
    background-color: #e7eaf3;
}

.u-datepicker .flatpickr-day.selected {
    color: #377dff;
    background-color: transparent;
    border-color: #377dff;
}

.u-datepicker .flatpickr-day.selected:focus.prevMonthDay,
.u-datepicker .flatpickr-day.selected:focus.nextMonthDay,
.u-datepicker .flatpickr-day.selected:hover.prevMonthDay,
.u-datepicker .flatpickr-day.selected:hover.nextMonthDay {
    color: #377dff;
    background-color: transparent;
}

.u-datepicker .flatpickr-day.selected.startRange,
.u-datepicker .flatpickr-day.selected.endRange {
    color: #fff;
    background-color: #377dff;
}

.u-datepicker .numInputWrapper span.arrowUp,
.u-datepicker .numInputWrapper span.arrowDown {
    display: none;
}

.u-datepicker .numInputWrapper:hover {
    background-color: transparent;
}


/*------------------------------------
  Icon Border Styles
------------------------------------*/

[class*="u-icon-brd"] {
    border-width: 0.0625rem;
    border-style: solid;
}


/*------------------------------------
  Form
------------------------------------*/

.u-form {
    border-radius: 0.25rem;
}

.form-input {
    z-index: 2;
}

.u-form__append,
.u-form__prepend,
.u-form__prepend>.btn,
.u-form__append>.btn,
.u-form__text {
    background-clip: padding-box;
    transition: all 0.2s ease-in-out;
}

.u-form__prepend>.u-btn-white {
    border-right: none;
}

.u-form__append .btn {
    margin-left: 1px;
}

.u-form__append>.u-btn-white {
    border-left: none;
    border-color: transparent;
}

.u-form__text {
    position: relative;
}

.u-form .u-btn-white:hover,
.u-form .u-btn-white:focus,
.u-form .u-btn-white:active {
    box-shadow: none;
}

.u-form--no-brd .form-input,
.u-form--no-brd .u-form__text {
    border-color: transparent;
}

.u-form--white-brd .form-input,
.u-form--white-brd .u-form__text {
    border-color: #fff;
}

.u-form--no-addon-brd .form-input:not(:first-child) {
    border-left: none;
}

.u-form--no-addon-brd .form-input:not(:last-child) {
    border-right: none;
}


/* Position */

.u-form--position {
    position: relative;
}

.u-form--position .form-input:not(:first-child) {
    border-radius: 0.25rem;
}

.u-form--position .u-form__text {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 4;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
}

.u-form--pill {
    border-radius: 6.1875rem;
}

.u-form--pill.u-form--no-brd {
    box-shadow: 0 0 25px rgba(119, 131, 143, 0.1);
}

.u-form--pill>.form-input:first-child {
    border-top-left-radius: 6.1875rem;
    border-bottom-left-radius: 6.1875rem;
}

.u-form--pill>.form-input:last-child {
    border-top-right-radius: 6.1875rem;
    border-bottom-right-radius: 6.1875rem;
}

.u-form--pill .u-form__prepend>.u-form__text,
.u-form--pill .u-form__prepend>.btn {
    border-top-left-radius: 6.1875rem;
    border-bottom-left-radius: 6.1875rem;
}

.u-form--pill .u-form__append>.u-form__text,
.u-form--pill .u-form__append>.btn {
    border-top-right-radius: 6.1875rem;
    border-bottom-right-radius: 6.1875rem;
}


/*------------------------------------
  Form Sizes
------------------------------------*/

.u-form .u-form__text {
    min-width: 3rem;
    font-size: 0.8125rem;
}

.u-form.u-form--pill>.form-input {
    padding-left: 24px;
    padding-right: 24px;
}

.u-form.u-form--pill .u-form__prepend>.u-form__text,
.u-form.u-form--pill .u-form__prepend>.btn {
    padding-left: 20px;
}

.u-form.u-form--pill .u-form__append>.u-form__text,
.u-form.u-form--pill .u-form__append>.btn {
    padding-right: 20px;
}

.u-form.u-form--pill .u-form__text {
    padding: 1rem 1rem;
}

.u-form.u-form--position>.form-input {
    padding-left: 3rem;
}

.u-form--sm .u-form__text {
    min-width: 2.6875rem;
}

.u-form--sm.u-form--pill>.form-input {
    padding-left: 22px;
    padding-right: 22px;
}

.u-form--sm.u-form--pill .u-form__prepend>.u-form__text,
.u-form--sm.u-form--pill .u-form__prepend>.btn {
    padding-left: 18px;
}

.u-form--sm.u-form--pill .u-form__append>.u-form__text,
.u-form--sm.u-form--pill .u-form__append>.btn {
    padding-right: 18px;
}

.u-form--sm.u-form--position>.form-input {
    padding-left: 2.75rem;
}

.u-form--sm.u-form--position .u-form__text-inner {
    font-size: 0.875rem;
}

.u-form--lg .u-form__text {
    font-size: 1.125rem;
    min-width: 3.875rem;
}

.u-form--lg .u-form__append>.btn,
.u-form--lg .u-form__prepend>.btn {
    font-size: 1.125rem;
}

.u-form--lg.u-form--pill>.form-input {
    padding-left: 30px;
    padding-right: 30px;
}

.u-form--lg.u-form--pill .u-form__prepend>.u-form__text,
.u-form--lg.u-form--pill .u-form__prepend>.btn {
    padding-left: 26px;
}

.u-form--lg.u-form--pill .u-form__append>.u-form__text,
.u-form--lg.u-form--pill .u-form__append>.btn {
    padding-right: 26px;
}

.u-form--lg.u-form--pill .u-form__text {
    padding: 1.125rem 1.125rem;
}

.u-form--lg.u-form--position>.form-input {
    padding-left: 4rem;
}

.u-form--lg.u-form--position .u-form__text-inner {
    font-size: 1.125rem;
}


/*------------------------------------
  Select
------------------------------------*/

.u-select .dropdown-item:hover,
.u-select .dropdown-item:focus,
.u-select .dropdown-item.active {
    color: #377dff;
}

.u-select.bootstrap-select li .dropdown-item.opt {
    padding-left: 0.375rem;
}

.u-select.bootstrap-select>.dropdown-toggle.bs-placeholder.u-btn-primary--air {
    color: #377dff;
}

.u-select.bootstrap-select>.dropdown-toggle.bs-placeholder.u-btn-primary--air:hover,
.u-select.bootstrap-select>.dropdown-toggle.bs-placeholder.u-btn-primary--air:focus,
.u-select.bootstrap-select>.dropdown-toggle.bs-placeholder.u-btn-primary--air:active,
.u-select.bootstrap-select>.dropdown-toggle.bs-placeholder.u-btn-primary--air.active {
    color: #fff;
}

.u-select .form-control {
    margin-bottom: 0.5rem;
}


/* Positions */

.u-select--right .dropdown-menu {
    left: auto !important;
    right: 0;
}


/*------------------------------------
  Success State
------------------------------------*/

.u-has-success .u-form.u-focus-state {
    box-shadow: 0 0 25px rgba(0, 201, 167, 0.1);
}

.u-has-success .u-form:focus,
.u-has-success .u-form.u-focus-state .u-form__append>.u-btn-white,
.u-has-success .u-form.u-focus-state .u-form__prepend>.u-btn-white,
.u-has-success .u-form.u-focus-state .u-form__text,
.u-has-success .u-form.u-focus-state .form-input,
.u-has-success .u-form.u-focus-state *:focus {
    border-color: #00c9a7;
}

.u-has-success .u-form.u-focus-state .u-form__text {
    color: #00c9a7;
}


/*------------------------------------
  Error State
------------------------------------*/

.u-has-error .u-form.u-focus-state {
    box-shadow: 0 0 25px rgba(222, 68, 55, 0.1);
}

.u-has-error .u-form:focus,
.u-has-error .u-form.u-focus-state .u-form__append>.u-btn-white,
.u-has-error .u-form.u-focus-state .u-form__prepend>.u-btn-white,
.u-has-error .u-form.u-focus-state .u-form__text,
.u-has-error .u-form.u-focus-state .form-input,
.u-has-error .u-form.u-focus-state *:focus {
    border-color: #de4437;
}

.u-has-error .u-form.u-focus-state .u-form__text {
    color: #de4437;
}


/*------------------------------------
  Focus States
------------------------------------*/

.u-form {
    transition: all 0.2s ease-in-out;
}

.u-form.u-focus-state {
    box-shadow: 0 0 25px rgba(55, 125, 255, 0.1);
}

.u-form:focus,
.u-form.u-focus-state .u-form__append>.u-btn-white,
.u-form.u-focus-state .u-form__prepend>.u-btn-white,
.u-form.u-focus-state .u-form__text,
.u-form.u-focus-state .form-input,
.u-form.u-focus-state *:focus {
    border-color: rgba(55, 125, 255, 0.5);
}

.u-form.u-focus-state .u-form__text {
    color: #377dff;
}

.u-form--white-brd.u-focus-state .form-input {
    border-color: #fff;
}


/*------------------------------------
  Form Modern
------------------------------------*/

.u-form--modern::before {
    right: 0;
}

.u-form--modern .form-input,
.u-form--modern .u-form__text {
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
}

.u-form--modern>.form-input {
    padding-left: 0;
}

.u-form--modern>.form-input:focus {
    background-color: transparent;
}

.u-form--modern .u-form__text,
.u-form--modern.u-form--sm .u-form__text,
.u-form--modern.u-form--lg .u-form__text {
    border-radius: 0;
}


/* Focus State */

.u-form--modern.u-focus-state {
    box-shadow: 0 0 0 rgba(119, 131, 143, 0);
}

.u-form--modern:focus,
.u-form--modern.u-focus-state .u-form__append>.btn,
.u-form--modern.u-focus-state .u-form__prepend>.btn,
.u-form--modern.u-focus-state .u-form__text,
.u-form--modern.u-focus-state .form-input,
.u-form--modern.u-focus-state *:focus {
    box-shadow: 0 0 0 rgba(119, 131, 143, 0);
}


/* States */

.u-has-error .u-form--modern.u-focus-state,
.u-has-success .u-form--modern.u-focus-state {
    box-shadow: 0 0 0 rgba(119, 131, 143, 0);
}

.u-has-error .u-form--modern:focus,
.u-has-error .u-form--modern.u-focus-state .u-form__append>.btn,
.u-has-error .u-form--modern.u-focus-state .u-form__prepend>.btn,
.u-has-error .u-form--modern.u-focus-state .u-form__text,
.u-has-error .u-form--modern.u-focus-state .form-input,
.u-has-error .u-form--modern.u-focus-state *:focus,
.u-has-success .u-form--modern:focus,
.u-has-success .u-form--modern.u-focus-state .u-form__append>.btn,
.u-has-success .u-form--modern.u-focus-state .u-form__prepend>.btn,
.u-has-success .u-form--modern.u-focus-state .u-form__text,
.u-has-success .u-form--modern.u-focus-state .form-input,
.u-has-success .u-form--modern.u-focus-state *:focus {
    box-shadow: 0 0 0 rgba(119, 131, 143, 0);
}


/*------------------------------------
  Google Map v1
------------------------------------*/


/*------------------------------------
  Nav 
------------------------------------*/

.nav-link {
    color: #77838f;
}


/*------------------------------------
  Blog Overlay v1
------------------------------------*/


/*------------------------------------
  Slick
------------------------------------*/

.u-slick {
    position: relative;
}

.u-slick--transform-off.slick-transform-off .slick-track {
    -webkit-transform: none !important;
    transform: none !important;
}


/*------------------------------------
  Slick Equal Height
------------------------------------*/

.u-slick--equal-height .slick-list {
    height: 100%;
}

.u-slick--equal-height .slick-track {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.u-slick--equal-height .slick-track .slick-slide {
    display: -ms-flexbox;
    display: flex;
    height: auto;
}


/*------------------------------------
  Slick Gutters
------------------------------------*/


/* Gutters X */

.u-slick--gutters-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}

.u-slick--gutters-1 .slick-slide {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.u-slick--gutters-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.u-slick--gutters-2 .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.u-slick--gutters-3 {
    margin-left: -1rem;
    margin-right: -1rem;
}

.u-slick--gutters-3 .slick-slide {
    margin-left: 1rem;
    margin-right: 1rem;
}


/*------------------------------------
  Slick Zoom
------------------------------------*/

.u-slick-zoom .slick-slide .u-slick-zoom__slide {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
}

.u-slick-zoom .slick-center .u-slick-zoom__slide {
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*------------------------------------
  Slick Arrows Classic
------------------------------------*/

.u-bg-transparent {
    background-color: transparent;
}

.u-bg-light-blue-50 {
    background-color: #f8fafd;
}


/*------------------------------------
  Background Gradients
------------------------------------*/

.u-gradient-half-primary-body-v1 {
    background-image: linear-gradient(150deg, #2d1582 0%, #19a0ff 100%);
    background-repeat: repeat-x;
    background-attachment: fixed;
}

.u-gradient-half-primary-v1 {
    background-image: linear-gradient(150deg, #2d1582 0%, #19a0ff 100%);
    background-repeat: repeat-x;
    background: #f9f9f9;
}

.u-gradient-half-primary-v2 {
    background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.05) 0%, transparent 100%);
    background-repeat: repeat-x;
}

.u-gradient-half-primary-v3 {
    background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.1) 0%, transparent 100%);
    background-repeat: repeat-x;
}

.u-gradient-half-primary-v4 {
    background-image: linear-gradient(150deg, #2d1582 0%, #19a0ff 85%);
    background-repeat: repeat-x;
}

.u-gradient-half-primary-v5 {
    background-image: linear-gradient(150deg, #377dff 0%, #2d1582 100%);
    background-repeat: repeat-x;
}

.u-gradient-half-info-v1 {
    background-image: linear-gradient(0deg, #377dff 0%, #00dffc 100%);
    background-repeat: repeat-x;
}

.u-gradient-half-warning-v1 {
    background-image: linear-gradient(25deg, #ffc107 30%, #de4437 100%);
    background-repeat: repeat-x;
}

.u-gradient-half-warning-v2 {
    background-image: linear-gradient(150deg, #ffc107 0%, #efa02e 100%);
    background-repeat: repeat-x;
}

.u-gradient-half-warning-v3 {
    background-image: linear-gradient(150deg, #ffc107 0%, #de4437 100%);
    background-repeat: repeat-x;
}


/*------------------------------------
  Background Overlay Gradients
------------------------------------*/

[class*="u-gradient-overlay-half"] {
    position: relative;
    z-index: 1;
}

[class*="u-gradient-overlay-half"]::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
}

.u-gradient-overlay-half-primary-video-v1::before {
    z-index: 2;
    background-image: linear-gradient(150deg, rgba(45, 21, 130, 0.9) 0%, rgba(25, 160, 255, 0.85) 100%);
    background-repeat: repeat-x;
}

.u-gradient-overlay-half-primary-v1::before {
    background-image: linear-gradient(150deg, rgba(45, 21, 130, 0.9) 0%, rgba(25, 160, 255, 0.85) 100%);
    background-repeat: repeat-x;
}

.u-gradient-overlay-half-primary-v2::before {
    background-image: linear-gradient(30deg, rgba(25, 160, 255, 0.85) 0%, rgba(45, 21, 130, 0.9) 100%);
    background-repeat: repeat-x;
}

.u-gradient-overlay-half-info-v1::before {
    background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.92) 0%, rgba(0, 223, 252, 0.92) 100%);
    background-repeat: repeat-x;
}

.u-gradient-overlay-half-dark-v1::before {
    background-image: linear-gradient(0deg, #1e2022 0%, transparent 75%);
    background-repeat: repeat-x;
}


/*------------------------------------
  Text Colors
------------------------------------*/

.u-text-light {
    color: rgba(255, 255, 255, 0.7);
}

.u-text-light[href]:hover {
    color: #fff;
}


/*------------------------------------
  Fill Colors
------------------------------------*/

.u-fill-none {
    fill: none;
}

.u-fill-white {
    fill: #f1f1f1;
}

.u-fill-dark {
    fill: #1e2022;
}

.u-fill-primary {
    fill: #377dff;
}

.u-fill-primary-darker {
    fill: #196eff;
}

.u-fill-primary-lighter {
    fill: #19a0ff;
}

.u-fill-success {
    fill: #00c9a7;
}

.u-fill-success-lighter {
    fill: #13d7b6;
}

.u-fill-info {
    fill: #00dffc;
}

.u-fill-danger {
    fill: #de4437;
}

.u-fill-danger-lighter {
    fill: #ec5245;
}

.u-fill-warning {
    fill: #ffc107;
}

.u-fill-warning-lighter {
    fill: #fdd14e;
}

.u-fill-warning-darker {
    fill: #efa02e;
}

.u-fill-midnightblue {
    fill: #2d1582;
}

.u-fill-gray-50 {
    fill: #f0f4f7;
}

.u-fill-gray-75 {
    fill: #f7f7f7;
}

.u-fill-light-blue-50 {
    fill: #f8fafd;
}

.u-fill-light-blue-100 {
    fill: #f6f9fc;
}

.u-fill-light-blue-125 {
    fill: #e7eaf3;
}


/*------------------------------------
  Stop Colors
------------------------------------*/

.u-stop-color-white {
    stop-color: #fff;
}

.u-stop-color-primary {
    stop-color: #377dff;
}

.u-stop-color-primary-darker {
    stop-color: #196eff;
}

.u-stop-color-primary-lighter {
    stop-color: #19a0ff;
}

.u-stop-color-warning {
    stop-color: #ffc107;
}

.u-stop-color-warning-darker {
    stop-color: #efa02e;
}

.u-stop-color-danger {
    stop-color: #de4437;
}

.u-stop-color-danger-lighter {
    stop-color: #ec5245;
}

.u-stop-color-info {
    stop-color: #00dffc;
}

.u-stop-color-info-lighter {
    stop-color: #55eafe;
}

.u-stop-color-midnightblue {
    stop-color: #2d1582;
}


/*------------------------------------
  Stroke Colors
------------------------------------*/

.u-stroke-white {
    stroke: #fff;
}

.u-stroke-dark {
    stroke: #1e2022;
}

.u-stroke-primary {
    stroke: #377dff;
}

.u-stroke-primary-darker {
    stroke: #196eff;
}

.u-stroke-success {
    stroke: #00c9a7;
}

.u-stroke-danger {
    stroke: #de4437;
}

.u-stroke-warning {
    stroke: #ffc107;
}

.u-stroke-midnightblue {
    stroke: #2d1582;
}

.u-stroke-gray-50 {
    stroke: #f0f4f7;
}

.u-stroke-light-blue-125 {
    stroke: #e7eaf3;
}

.u-stroke-light-blue-150 {
    stroke: #97a4af;
}


/*------------------------------------
  Height
------------------------------------*/

.height-40vh {
    height: 40vh;
}

.height-60vh {
    height: 60vh;
}

.height-100vh {
    height: 100vh;
}

.min-height-100vh {
    min-height: 100vh;
}

.min-height-20 {
    min-height: 1.25rem;
}

.min-height-155 {
    min-height: 9.6875rem;
}

.min-height-300 {
    min-height: 18.75rem;
}

.min-height-380 {
    min-height: 23.75rem;
}

.min-height-450 {
    min-height: 28.125rem;
}

.min-height-550 {
    min-height: 34.375rem;
}

.min-height-600 {
    min-height: 37.5rem;
}

.min-height-620 {
    min-height: 38.75rem;
}

@media (min-width: 576px) {
    .height-100vh--sm {
        height: 100vh;
    }
}

@media (min-width: 768px) {
    .height-100vh--md {
        height: 100vh;
    }
    .min-height-100vh--md {
        min-height: 100vh;
    }
}

@media (min-width: 992px) {
    .height-100vh--lg {
        height: 100vh;
    }
    .min-height-auto--lg {
        min-height: auto;
    }
    .min-height-100vh--lg {
        min-height: 100vh;
    }
}

@media (min-width: 1200px) {
    .height-100vh--xl {
        height: 100vh;
    }
}


/*------------------------------------
  Opacity
------------------------------------*/

.opacity-0_2 {
    opacity: .2;
}


/*------------------------------------
  Overflow
------------------------------------*/

.overflow-hidden {
    overflow: hidden;
}


/*------------------------------------
  Position Spaces
------------------------------------*/

.position-absolute-top-0 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.position-absolute-top-right-0 {
    position: absolute;
    top: 0;
    right: 0;
}

.position-absolute-top-left-0 {
    position: absolute;
    top: 0;
    left: 0;
}

.position-absolute-top-bottom-0 {
    position: absolute;
    top: 0;
    bottom: 0;
}

.position-absolute-bottom-0 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.position-absolute-bottom-right-0 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.position-absolute-bottom-left-0 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.bottom-0 {
    bottom: 0;
}

.bottom-50 {
    bottom: 3.125rem;
}

.right-0 {
    right: 0;
}

.left-0 {
    left: 0;
}

.left-15x {
    left: 15%;
}

.left-50x {
    left: 50%;
}

@media (min-width: 768px) {
    .position-absolute-top-left-0--md {
        position: absolute;
        top: 0;
        left: 0;
    }
    .position-absolute-top-right-0--md {
        position: absolute;
        top: 0;
        right: 0;
    }
    .position-absolute-bottom-right-0--md {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media (min-width: 992px) {
    .position-absolute-top-left-0--lg {
        position: absolute;
        top: 0;
        left: 0;
    }
    .position-absolute-bottom-0--lg {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .position-absolute-top-right-0--lg {
        position: absolute;
        top: 0;
        right: 0;
    }
}


/*------------------------------------
  Transitions
------------------------------------*/


/* 3D Hover */

.transition-3d-hover {
    transition: all 0.2s ease-in-out;
}

.transition-3d-hover:hover,
.transition-3d-hover:focus {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}


/*------------------------------------
  Typography Font Size
------------------------------------*/

.font-size-13 {
    font-size: 0.8125rem;
}

.font-size-14 {
    font-size: 0.875rem;
}

.font-size-20 {
    font-size: 1.25rem;
}

.font-size-26 {
    font-size: 1.625rem;
}

.font-size-32 {
    font-size: 2rem;
}

@media (max-width: 991px) {
    .font-size-48--md-down {
        font-size: 3rem;
    }
}


/*------------------------------------
  Line Height
------------------------------------*/

.text-lh-sm {
    line-height: 1.2;
}

.text-lh-md {
    line-height: 1.8;
}


/*------------------------------------
  Z-Index
------------------------------------*/

.z-index-minus-1 {
    z-index: -1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-4 {
    z-index: 4;
}


/*------------------------------------
  Space
------------------------------------*/

.u-space-1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.u-space-1-top {
    padding-top: 2rem;
}

.u-space-1-bottom {
    padding-bottom: 2rem;
}

.u-space-2 {
    padding-top: 4.0625rem;
    padding-bottom: 4.0625rem;
}

.u-space-2-top {
    padding-top: 4.0625rem;
}

.u-space-2-bottom {
    padding-bottom: 4.0625rem;
}

.u-space-3 {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
}

.u-space-3-top {
    padding-top: 8.125rem;
}

.u-space-3-bottom {
    padding-bottom: 8.125rem;
}

.u-space-4 {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
}

.u-space-4-top {
    padding-top: 12.5rem;
}

.u-space-4-bottom {
    padding-bottom: 12.5rem;
}

.u-space-5 {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.u-space-5-top {
    padding-top: 15rem;
}

.u-space-5-bottom {
    padding-bottom: 15rem;
}

.u-space-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.u-space-0-top {
    padding-top: 0;
}

.u-space-0-bottom {
    padding-bottom: 0;
}

@media (min-width: 576px) {
    .u-space-3--sm {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
    .u-space-5-top--sm {
        padding-top: 15rem;
    }
}

@media (min-width: 768px) {
    .u-space-1-top--md {
        padding-top: 2rem;
    }
    .u-space-2-top--md {
        padding-top: 4.0625rem;
    }
    .u-space-5-top--md {
        padding-top: 15rem;
    }
}

@media (min-width: 992px) {
    .u-space-3--lg {
        padding-top: 8.125rem;
        padding-bottom: 8.125rem;
    }
    .u-space-3-top--lg {
        padding-top: 8.125rem;
    }
    .u-space-4--lg {
        padding-top: 12.5rem;
        padding-bottom: 12.5rem;
    }
    .u-space-4-top--lg {
        padding-top: 12.5rem;
    }
    .u-space-5-top--lg {
        padding-top: 15rem;
    }
    .u-space-5-bottom--lg {
        padding-bottom: 15rem;
    }
    .u-space-0--lg {
        padding-top: 0;
        padding-bottom: 0;
    }
    .u-space-bottom-0--lg {
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .u-space-4-top--xl {
        padding-top: 12.5rem;
    }
    .u-space-5-top--xl {
        padding-top: 15rem;
    }
}


/*------------------------------------
  Hamburgers
------------------------------------*/

.u-hamburger {
    font-size: inherit;
    line-height: 0;
    padding: 0.25rem;
}

.u-hamburger:hover .u-hamburger__inner,
.u-hamburger:hover .u-hamburger__inner::before,
.u-hamburger:hover .u-hamburger__inner::after {
    background-color: #377dff;
}

.u-hamburger__box {
    width: 1.5625rem;
    height: 0.96875rem;
    display: inline-block;
    position: relative;
}

.u-hamburger__inner {
    display: block;
    top: 0.07812rem;
    margin-top: -0.07812rem;
}

.u-hamburger__inner,
.u-hamburger__inner::before,
.u-hamburger__inner::after {
    width: 1.5625rem;
    height: 0.15625rem;
    background-color: #8c98a4;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.u-hamburger__inner::before,
.u-hamburger__inner::after {
    content: "";
    display: block;
}

.u-hamburger__inner::before {
    top: 0.40625rem;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.u-hamburger__inner::after {
    top: 0.8125rem;
}

.u-hamburger[aria-expanded="true"] .u-hamburger__inner,
.u-hamburger .is-active .u-hamburger__inner {
    -webkit-transform: translate3d(0, 6.5px, 0) rotate(45deg);
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.u-hamburger[aria-expanded="true"] .u-hamburger__inner::before,
.u-hamburger .is-active .u-hamburger__inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-3.57143px, -4px, 0);
    transform: rotate(-45deg) translate3d(-3.57143px, -4px, 0);
    opacity: 0;
}

.u-hamburger[aria-expanded="true"] .u-hamburger__inner::after,
.u-hamburger .is-active .u-hamburger__inner::after {
    -webkit-transform: translate3d(0, -13px, 0) rotate(-90deg);
    transform: translate3d(0, -13px, 0) rotate(-90deg);
}

.u-hamburger--white .u-hamburger__inner,
.u-hamburger--white .u-hamburger__inner::before,
.u-hamburger--white .u-hamburger__inner::after {
    background-color: rgba(255, 255, 255, 0.8);
}

.u-hamburger--white:hover .u-hamburger__inner,
.u-hamburger--white:hover .u-hamburger__inner::before,
.u-hamburger--white:hover .u-hamburger__inner::after {
    background-color: #fff;
}

.js-header-fix-moment .u-hamburger--white .u-hamburger__inner,
.js-header-fix-moment .u-hamburger--white .u-hamburger__inner::before,
.js-header-fix-moment .u-hamburger--white .u-hamburger__inner::after {
    background-color: #8c98a4;
}

.js-header-fix-moment .u-hamburger--white:hover .u-hamburger__inner,
.js-header-fix-moment .u-hamburger--white:hover .u-hamburger__inner::before,
.js-header-fix-moment .u-hamburger--white:hover .u-hamburger__inner::after {
    background-color: #377dff;
}


/*------------------------------------
  Background Image Style
------------------------------------*/

.u-bg-img-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.u-bg-img-hero-bottom {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.u-bg-img-hero-center {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/*------------------------------------
  Card
------------------------------------*/

.u-card-header {
    padding: 0;
    transition: 0.3s ease-in-out;
}

.u-card-header:hover {
    background-color: #f8fafd;
}

.u-card-btn {
    color: #1e2022;
    text-align: left;
    white-space: inherit;
}

.u-card-btn__arrow {
    color: #377dff;
    margin-left: 1rem;
    transition: 0.3s ease-in-out;
}

.collapsed .u-card-btn__arrow {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.u-card-body {
    color: #77838f;
}


/* Card Collapse */

.u-card-collapse__heading {
    cursor: pointer;
    color: #1e2022;
}

.u-card-collapse__heading-icon {
    transition: 0.3s;
}

.u-card-collapse__heading:hover {
    color: #377dff;
}

.u-card-collapse .collapsed .u-card-collapse__heading-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    /* Gutters X */
    .u-card--gutters-2-md {
        margin-right: -1rem;
        margin-left: -1rem;
    }
    .u-card--gutters-2-md>.card {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .u-card--gutters-4-md {
        margin-right: -2rem;
        margin-left: -2rem;
    }
    .u-card--gutters-4-md>.card {
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

@media (min-width: 992px) {
    /* Gutters X */
    .u-card--gutters-2-lg {
        margin-right: -1rem;
        margin-left: -1rem;
    }
    .u-card--gutters-2-lg>.card {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .u-card--gutters-4-lg {
        margin-right: -2rem;
        margin-left: -2rem;
    }
    .u-card--gutters-4-lg>.card {
        margin-right: 2rem;
        margin-left: 2rem;
    }
}


/*------------------------------------
  Caret
------------------------------------*/

.dropdown-toggle::after {
    margin-left: 0.5rem;
}


/*------------------------------------
  Content Centered
------------------------------------*/

.u-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* Vertical */

.u-content-centered-y {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media (min-width: 768px) {
    .u-content-centered-y--md {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@media (min-width: 992px) {
    .u-content-centered-y--lg {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}


/*------------------------------------
  Media Player
------------------------------------*/

.u-media-player {
    color: #1e2022;
    transition: all 0.2s ease-in-out;
}

.u-media-player__icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 3.75rem;
    height: 3.75rem;
    font-size: 0.8125rem;
    border-radius: 50%;
    color: #1e2022;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.u-media-player__icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 0.125rem;
}

.u-media-player__icon--box-shadow {
    box-shadow: 0 0 40px rgba(140, 152, 164, 0.3);
}

.u-media-player:hover .u-media-player__icon,
.u-media-player:focus .u-media-player__icon {
    color: #377dff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.u-media-player:hover .u-media-player__icon--primary,
.u-media-player:focus .u-media-player__icon--primary {
    background-color: #377dff;
}

.u-media-player:hover .u-media-player__icon--success,
.u-media-player:focus .u-media-player__icon--success {
    background-color: #00c9a7;
}


/* Colors */

.u-media-player:hover .u-media-player__icon--primary,
.u-media-player:hover .u-media-player__icon--success,
.u-media-player:focus .u-media-player__icon--primary,
.u-media-player:focus .u-media-player__icon--success {
    color: #fff;
}

.u-media-player__icon--primary {
    color: #377dff;
    background-color: rgba(55, 125, 255, 0.1);
}

.u-media-player__icon--success {
    color: #00c9a7;
    background-color: rgba(0, 201, 167, 0.1);
}


/* Large Size */

.u-media-player__icon--lg {
    width: 5rem;
    height: 5rem;
    font-size: 1rem;
}


/* Extra Large Size */

.u-media-player__icon--xl {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 1rem;
}


/* Positions */

.u-media-player--centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
    .u-media-player--left-minus-50x-top-50x-lg {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}


/*------------------------------------
  Media Viewer
------------------------------------*/

.u-media-viewer {
    position: relative;
    display: block;
}

.u-media-viewer:hover .u-media-viewer__icon {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.u-media-viewer__container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.u-media-viewer__icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
    color: #fff;
    background-color: #377dff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    transition: 0.3s ease-in-out;
}

.u-media-viewer__icon:hover,
.u-media-viewer__icon:focus {
    color: #fff;
}

.u-media-viewer__icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/*------------------------------------
  Sticky Blocks
------------------------------------*/

[class*="sticky-block"] {
    max-width: 100%;
}


/*------------------------------------
  Video Player
------------------------------------*/

.u-video-player {
    position: relative;
    background-color: #000;
}

.u-video-player__preview {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 1;
    -o-object-fit: cover;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.u-video-player__played .u-video-player__preview {
    opacity: 0;
    pointer-events: none;
}

.u-video-player__btn {
    z-index: 3;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.u-video-player__played .u-video-player__btn {
    -webkit-animation: videoPlayerButton 0.4s ease-in-out forwards;
    animation: videoPlayerButton 0.4s ease-in-out forwards;
    pointer-events: none;
}

.u-video-player__btn:hover .u-video-player__icon,
.u-video-player__btn:focus .u-video-player__icon {
    color: #377dff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.u-video-player__icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 3.75rem;
    height: 3.75rem;
    font-size: 0.8125rem;
    border-radius: 50%;
    color: #1e2022;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.u-video-player__icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 0.125rem;
}


/* Large Size */

.u-video-player__icon--lg {
    width: 5rem;
    height: 5rem;
    font-size: 1rem;
}


/* Positions */

.u-video-player__centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes videoPlayerButton {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes videoPlayerButton {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
    }
}


/*------------------------------------
  Skippy
------------------------------------*/

.u-skippy {
    display: none;
}


/*------------------------------------
  Accessibility
------------------------------------*/

:focus,
a:focus,
button:focus {
    outline: 0;
}

.form-control:focus {
    box-shadow: 0 0 0 0 transparent;
}

.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not([disabled]):not(.disabled):active,
.btn:not([disabled]):not(.disabled).active {
    box-shadow: 0 0 0 0 transparent;
}

.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.show>.btn.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 transparent;
    border: 1px solid #fff;
    color: #774e79;
}

.page-link:focus {
    box-shadow: 0 0 0 0 transparent;
}

.custom-control-input:checked~.custom-control-label::before,
.custom-control-input:focus~.custom-control-label::before,
.custom-control-input:active~.custom-control-label::before {
    box-shadow: 0 0 0 0 transparent;
}

.custom-file-input:focus~.custom-file-label {
    box-shadow: 0 0 0 0 transparent;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: 0 !important;
}

.text-primary {
    color: rgb(175, 163, 100) !important;
}

.girdcard--footer ul {
    padding-left: 0;
    display: flex;
    margin: 0;
}

.girdcard--footer ul li {
    list-style: none;
    float: left;
    width: 50%;
    text-align: center;
    border-right: 1px solid #eee;
    padding: 5px 0px 5px;
    cursor: pointer;
}

.girdcard--footer ul li:hover {
    background-color: #77838f;
    color: #fff;
}

.girdcard--footer ul li:hover i {
    color: #fff;
}

.girdcard--footer ul li:hover .girdcard--footer__text {
    color: #fff;
}

.girdcard--footer__icons i {
    font-size: 25px;
    color: #c6d4dd;
}

.girdcard--footer__text {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.book--lgmodal-view .modal-dialog {
    max-width: 1200px;
}

.book--lgmodal-view .modal-dialog .modal-content {
    min-width: 1200px;
    max-width: 1200px;
}

.modal--bookheader {
    padding: 10px;
}


/* .modal--bookbodyarea{
  background-color: #f1f4f5;
  min-height: calc(100vh - 20vh);
  max-height: calc(100vh - 12vh);
  overflow-y: scroll;
  overflow-x: hidden;
} */

.modal-title {
    font-size: 16px;
    display: inline;
}

.author-name {
    margin: 0;
    font-size: 12px;
}

.thumbnail img {
    width: 100%;
    height: 90px;
}

.rhs--actionicons {
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    height: 70px;
}

.rhs--actionicons li {
    width: 33%;
    float: left;
    text-align: center;
    padding: 13px 5px;
    height: 80px;
}

.rhs--actionicons li:last-child {
    border: none;
}

.end--datefield,
.count--numberfield {
    font-size: 18px;
    font-weight: 400;
    color: #111;
}

.label--textfield {
    font-size: 12px;
    text-align: right;
    color: #999;
}

.rhs--actionicons__icons .fa-icons {
    font-size: 20px;
    color: #c6d4dd;
    padding-right: 5px;
}

.rhs--actionicons__icons .fa-icons i {
    position: absolute;
    font-size: 60px;
    opacity: 0.3;
    color: #8c98a4;
    cursor: pointer;
}

.modal--bookbodyarea__lhslistingsection .vbheaderlist {
    position: fixed;
    width: 25%;
}

.modal--bookbodyarea__maincontentsection {
    background: #f4f4f4;
    min-height: calc(100vh - 13vh);
    max-height: calc(100vh - 13vh);
}

.view--modemodalform {
    box-shadow: none;
    border: 1px solid #ccc;
    margin: 50px !important;
    background: #fff !important;
    padding: 0px !important;
}

.addstory-section {
    position: absolute;
    top: 0px;
}


/* edit books */

.edit--bookbodyarea {
    background: #f4f4f4;
    min-height: calc(100vh - 12.5vh);
    max-height: calc(100vh - 12.5vh);
    overflow-y: scroll;
}

.edit--modemodalform {
    border: 1px solid #ccc;
    margin: 20px 120px 100px !important;
    background: #fff !important;
    padding: 25px !important;
    /* box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.1); */
    position: relative;
}

.insert--linksmedia {
    position: absolute;
    bottom: -16px;
    text-align: center;
    display: block;
    width: 100%;
}

.insert--linksmedia i {
    font-size: 30px;
    color: #5555559e;
}

.insert--linksmedia .add-btnlinks {
    background: transparent;
    padding: 0;
}

.insert--linksmedia .add-btnlinks:hover i {
    color: #555;
    transition: 2s;
}

.insert--linksmedia .dropdown-toggle::after {
    display: none;
}

.book-story-layout .rhs--actionicons li {
    width: 25%;
}

.hidden {
    display: none !important;
    cursor: pointer;
}

.text-or-imageview {
    position: relative;
    margin: 0 0 40px;
}

.text-or-imageview .only--imageview {
    border: 1px solid #aaaaaa24;
    padding: 15px;
    position: relative;
}

.only--imageview .image--action .image--action__btns {
    display: none;
}

.only--imageview:hover .image--action .image--action__btns i {
    font-size: 14px;
    color: #6e6e6e;
    padding: 3px 6px;
    cursor: pointer;
    border: 1px solid #afadad;
    background: #fff;
}

.only--imageview:hover .image--action .image--action__btns {
    position: absolute;
    top: 5px;
    display: block;
    left: 5px;
    right: auto;
}

.image--action img {
    max-width: 100%;
}

.only--imageview .insert--linksmedia {
    display: none;
}

.only--imageview:hover .insert--linksmedia {
    display: block;
}

.no-recordsadd-data {
    min-height: 150px;
    max-height: 150px;
    padding: 60px;
}

.no-recordsadd-data .insert--linksmedia {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    bottom: 0
}

.autosaveinfo p {
    text-align: center;
    font-size: 12px;
    padding: 5px 0;
    margin-bottom: 0;
    line-height: 2.8;
}

.submitactionbtns {
    text-align: center;
}

.submitactionbtns .btn {
    padding: 8px 10px !important;
    margin: 0 10px;
}

@media (min-width: 576px) {
    .add-story-ckeditor .modal-dialog {
        max-width: 940px;
        margin: 1.75rem auto;
    }
}

.ntfybadge {
    position: absolute;
    top: -15px;
    right: -18px;
    font-size: 16px;
    font-weight: 700;
    color: #3bd6ba;
}

.ntfybadge .fa {
    color: #00c9a7;
    font-size: 14px;
}

.bkpg--outerlayout .tooltipimg {
    position: relative;
    display: inline-grid;
    max-width: 100%;
    z-index: 11;
}

.bkpg--outerlayout .tooltipimg img:hover {
    z-index: 0;
}


/* Font Rubik set as primary */

@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&subset=cyrillic,hebrew,latin-ext');

/*start of header */

.top-header-content {
    height: 34px;
  /*  box-shadow: 0 -2px 1px rgb(124 230 215) inset;
    background-color: rgb(125 231 216) !important;*/
    box-shadow: 0 -2px 1px rgb(224 234 243) inset;
    background-color: rgb(224 234 243) !important;
}

.primary-top-header {
    background-color: #fff;
    position: relative;
         height: 70px;
}

.primary-top-header .header-navbar-brand img {
    height: auto;
    position: absolute;
    top: 5px;
    width: 150px;
    text-align: center;
    vertical-align: middle;
    left: 0;
}

.header-section {
    border-bottom:none;
    min-height: 50px;
}

.nav-search-item .input-group-lg>.form-control,
.nav-search-item .input-group-lg>.input-group-prepend>.input-group-text,
.nav-search-item .input-group-lg>.input-group-append>.input-group-text,
.nav-search-item .input-group-lg>.input-group-prepend>.btn,
.nav-search-item .input-group-lg>.input-group-append>.btn {
    height: auto;
    padding: 8px 30px;
    font-size: 16px;
    line-height: inherit;
    border-radius: 3px !important;
}
.searchbuy-items ul .createeventbtn .header-mycart-btn {
    display: flex;
    padding: 0;
}
.searchbuy-items ul .createeventbtn.active, .searchbuy-items ul .createeventbtn:hover {
    background:#765ab3!important;
    border-radius: 20px!important;
}
.header-section .u-btn--icon__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 18px;
    top: 15px;
}

.dropdown.header-languageselector:hover .dropdown-content {
    display: block;
}


/* Header mega Search */

.header-megasearch {
    display: none;
    background-color: #f6f9fc;
    padding-top: 3rem;
    padding-bottom: 3rem;
    box-shadow: inset 0 -10px 20px -10px rgba(130, 130, 134, 0.05);
}

.header-megasearch-content {
    max-width: 50rem;
}

.primary-nav-menus .nav-link {
    font-size: 13px;
    color: #999;
}

.searchbuy-items {
    float: inherit;
    right: inherit;
    position: inherit;
}

.big-menuitems li {
    min-width: 100px;
    text-align: center;
}

.big-menuitems li a {
    color: #444 !important;
    font-weight: 400;
    cursor: pointer;
}

.big-menuitems li:active a,
.big-menuitems a:focus{
    background: #edede9;
    color: #7d4e7c !important;
    font-weight: 500;
}

.header-mycart-btn .nav-actionlists-button {
     font-size: 18px;
    top: inherit;
    line-height: inherit;
    color: #1e1f55;
    cursor: pointer;
    display: block;
    padding-right: 5px;
    text-align: center;
}
.searchbuy-items ul .createeventbtn:hover .header-mycart-btn .nav-actionlists-button,
.searchbuy-items ul .createeventbtn:hover .header-mycart-btn .createeventtext{
color: #ffff!important;
}
.createeventtext {
    font-size: 12px!important;
    display: inline-block;
    font-weight: 400!important;
    position: relative;
    top: inherit;
    color: #444;
    padding: 0px!important;
    text-transform: capitalize;
    display: block;
}
.primary-nav-menus .nav-link {
     position: relative;
    top: 22px;
    left: 15px;
    text-transform: uppercase;
}

.navbar-nav>li {
    list-style: none;
}

.header-mycart-btn .nav-actionlists-button:hover {
    color: #1e1f55;
}

.searchbuy-items ul .createeventbtn {
    list-style: none;
    margin: 5px 0!important;
    text-align: center;
    padding: 10px 15px!important;
}

li a .user-imagelogin img {
    border-radius: 50%;
    vertical-align: middle;
    height: 30px !important;
    width: 30px !important;
    margin-top: 0;
    margin-bottom: 4px;
}


/* navbar */

.nav-actionlists-button .badge {
    font-size: 9px;
    position: absolute;
    top: 0px;
    border: 1px solid;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    padding: 1px 4px;
    line-height: 1.4;
    right: 7px;
}

.nav-actionlists-button .badge.badge-danger {
    color: #fff;
    background-color: #7d4e7c !important;
}

.user-information ul li a {
    padding: 10px;
    display: block;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.user-information .header-mycart-btn {
    color: #77838f;
}

.user-information .bg-coloring {
    /* background: #e92135; */
    padding: 5px 15px;
}

.searchbuy-items .userdetail .myid-details :active {
    background: #e92135;
}

.user-information .bg-coloring .image-section img {
    width: 15%;
    border-radius: 50%;
}

.user-information .image-section .user-name {
    /* color: #fff; */
    font-size: 13px;
    line-height: inherit;
    font-weight: 500;
    text-transform: capitalize;
}

.user-information .icon-section {
    float: right;
    margin-top: 5px;
    color: #fff;
    padding-left: 10px;
    cursor: pointer;
}

.user-information .icon-section a {
    padding: 0px;
}

.user-information .icon-section a i {
    color: #fff;
}

.user-information p.hello-text {
    margin: 0px;
    padding: 5px;
    font-size: 12px;
    text-align: center;
    color: #aaa;
    font-weight: 500;
}

.user-information ul li a {
    padding: 10px 15px;
    display: block;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.user-information ul li a i {
    font-size: 16px;
    color: #77838f;
}

.go-tocart-btn {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px !important;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    background: #7d4e7c !important;
    cursor: pointer;
}

.go-tocart-btn a {
    color: #fff !important;
}

.go-tocart-btn i {
    font-size: 16px;
}

.user-information ul {
    padding: 0;
    right: 0 !important;
    left: auto !important;
    width: 200px;
    padding-bottom: 0px;
    top: 55px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 5px;
    z-index: 102 !important;
}

.caret-icon .header-mycart-btn.dropdown-toggle::after {
    visibility: hidden;
    display: none;
}

.caret-icon .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 400px;
    padding: 0;
}

    .notification-col .notification-list ul .notify-details:hover {
        background: #efefef;
    }

    .notification-col .notification-list {
        padding: 0;
        cursor: default;
        margin: 10px;
    }

    .notification-col .notification-list ul {
        padding-left: 0;
        width: 100%;
        display: inline-block;
    }

    .notification-col .notification-list ul .notify-details {
        padding: 5px;
        width: 100%;
        display: inherit; 
        list-style: none;
        border-radius: 3px;
    }

    .notification-col .notify-details .list-image img {
        width: 40px;
        height: 40px;
        display: block;
        margin: 5px auto;
    }

    .notification-col .notify-details .main-heading {
        margin: 0;
        font-size: 13px;
        font-weight: 500;
        color: #666;
        line-height: 1.5em;
    }

    .notification-col .notify-details p {
        font-size: 12px;
        font-weight: 400;
        color: #777;
        margin-bottom: 0;
        line-height: 1.8;
    }

    .notification-col .notify-details .sub-heading {
        font-size: 11px;
        margin: 0;
        text-transform: lowercase;
        color: #999;
        line-height: 1.5em;
    }

    .notification-col .notify-details i {
        display: none;
    }

    .notification-col .notify-details:hover i {
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        font-size: 11px;
        border-radius: 50%;
        padding: 2px 3px;
        background: #ef5011;
        color: #fff;
    }

    .notifications-scroll {
        padding: 0px;
        min-height: 350px;
        max-height: 350px;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .nt-tilte {
        padding: 15px 20px 0;
        font-size: 18px;
    }

    .notification-col ul .notify-details {
        list-style: none;
        padding: 10px 10px !important;
        border-bottom: 1px solid #eee;
    }

    .user-information a::after {
        content: none;
    }


    /*start of footer*/

    .footer-section .footer {
        height: auto;
        padding-bottom: 0px;
        width: 100%;
        bottom: 0;
        color: #afa364;
            background: #1e2158;
        -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.08);
        box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.08);
        /* margin-top: 100px; */
    }

    .footer-section .footer p {
        margin: 0;
        font-size: 11px;
        color: #6f6f6f;
        font-weight: 300;
    }

    .footer-section .footer img {
        max-width: 100%;
    }

    .footer-section .footer h3 {
        color: #474747;
        font-size: 13px;
        font-weight: 500;
        padding: 30px 0 10px;
        line-height: 2;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .footer-section .footer h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #7d4e7c;
    }

    .footer-section .footer ul {
        list-style-type: none;
        margin-left: 0;
        margin-top: 0;
        color: #7F8C8D;
        padding-left: 0;
        display: inline-block;
    }

    .footer-section .footer ul li a {
        padding: 0 0 10px 0;
        display: block;
        color: #6f6f6f;
        font-weight: 400;
        font-size: 12px;
        cursor: pointer;
    }

    .footer-section .footer ul li a:hover {
        color: #7d4e7c;
    }

    .footer-section ul.social {
        margin-bottom: 0px;
    }

    .footer-section .social li {
        float: left;
        height: 33px;
        line-height: 33px;
        margin: 0 8px 0 0;
        padding: 0;
        width: 33px;
    }

    .footer-section .social li a {
        color: #EDEFF1;
        padding: 0px;
    }

    .footer-section .social li:hover {
        background: transparent;
    }

    .footer-section .social li a i {
        font-size: 24px;
        margin: 0 0 0 5px;
        opacity: 0.90;
    }

    .footer-section .social li a i:hover {
        opacity: 1;
    }

    .footer-section .social li a .fa-twitter {
        color: #1da1f2;
    }

    .footer-section .social li a .fa-facebook {
        color: #395693;
    }

    .footer-section .social li a .fa-linkedin {
        color: #016196
    }

    .footer-section .social li a .fa-google-plus {
        color: #dc4d3f;
    }

    .footer-section .social li a .fa-youtube {
        color: #ff0000;
    }

    .footer-section .footer .form-control {
        border-radius: 2px 0 0 2px;
        border-color: #585C5D;
        color: #555;
        font-size: 15px;
        height: 35px !important;
    }

    .footer-section .button-input .btn {
        line-height: 1;
        border-radius: 0px;
        height: 35px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    }

    .footer-section .footer-socialicons-copyright {
        border-top: 1px solid #d6d0af;
        width: 100%;
        padding: 15px 0px 0px;
        display: inline-block;
        text-align: center;
    }

    .footer-section .button-input .form-control {
        border-top-right-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
        font-size: 12px;
        font-weight: 500;
        color: #555;
    }

    .footer-section .moveup-btn {
        position: absolute;
        right: 9px;
        top: -20px;
        border-radius: 50%;
        animation-iteration-count: infinite;
        animation-delay: 5s;
        animation-duration: 5s;
    }


    /*end of foooter*/

    .primary-breadcrumb {
        background: transparent;
        padding: 15px;
    }

    .primary-breadcrumb ul {
        margin: 0;
        -webkit-padding-start: 0;
        -moz-padding-start: 0;
        -ms-padding-start: 0;
        -o-padding-start: 0;
    }

    .primary-breadcrumb ul li {
        list-style: none;
        float: left;
        padding: 0;
        padding-right: 5px;
    }

    .primary-breadcrumb ul li a {
        margin-bottom: 0;
        color: #99abb4;
        font-weight: 400;
        font-size: 12px;
    }

    .primary-breadcrumb ul li i {
        font-style: 13px;
    }

    .primary-breadcrumb ul li i {
        font-size: 18px;
        color: #ddd;
        vertical-align: middle;
    }

    .backslash {
        font-size: 10px;
        font-weight: 300px;
    }

    .results-count {
        overflow: hidden;
        max-height: 20px;
        height: 20px;
        font-size: 14px;
        line-height: 2.6;
        white-space: pre-wrap;
        margin-bottom: 10px;
        color: #77838f;
    }

    .sort-buttons {
        min-height: 60px;
    }

    .sort-buttons button {
        display: inline-block;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: 4px 6px;
        font-size: 12px;
        line-height: 1.5;
        border-radius: 0.25rem;
        transition: all 0.2s ease-in-out;
    }

    .sort-buttons button.active {
        color: #fff;
        background: #111640;
    }


    /* Book listing on grid view */

    .gridview-booklist {
        margin-bottom: 45px;
    }

    .gridview-booklist:hover {
        margin-bottom: 30px;
        margin-top: 0px;
        /*  box-shadow: rgba(38,41,53,0.35) 0 2px 3px 0;*/
        box-shadow: 0 2px 12px 2px rgba(38, 41, 53, 0.35);
        background: transparent;
    }

    .gridview-booklist .card-inner {
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.04706) 0 2px 3px 0;
        margin-bottom: 24px;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        border-radius: 2px;
        overflow: hidden;
        margin-bottom: 0;
    }

    .gridview-booklist .card-book-description {
        padding: 0 10px;
    }

    .gridview-booklist .card-inner a {
        display: block;
    }

    .gridview-booklist .card-image {
        position: relative;
        width: 100%;
        background: repeating-linear-gradient( 45deg, #ddd, #ddd 10px, #e7eaf3 10px, #eee 20px);
        padding-top: 0;
        overflow: hidden;
        height: 240px;
    }

    .gridview-booklist .card-image>img {
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        border-top-right-radius: 3px;
    }

    .gridview-booklist .card-bookrating {
        position: absolute;
        bottom: 0;
        display: table;
        background-color: #fff;
        padding: 8px 8px 8px 12px;
        border-top-right-radius: 2px;
    }

    .gridview-booklist .card-bookrating .rating-score {
        color: #8c98a4;
        font-size: 12px;
        font-weight: bold;
        padding: 0 12px;
    }

    .gridview-booklist .card-bookrating .rating-icon {
        color: #ef534e;
    }

    .gridview-booklist .card-favourite {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #fff;
        border-radius: 0 2px 0 2px;
        transition: all .3s ease;
        padding: 1px;
    }

    .gridview-booklist .card-favourite .fav-checkbox {
        padding: 6px 12px;
        transition: all .3s ease;
        margin-bottom: 0;
        display: inline-block;
    }

    .gridview-booklist .card-favourite .fav-checkbox-icon {
        transition: all .3s ease !important;
        position: absolute;
        left: 5px;
        top: 0px;
        margin-top: 2px;
        color: #ef534e;
    }

    .gridview-booklist .card-favourite .fav-checkbox-bg {
        transition: all .3s ease !important;
        position: absolute;
        left: 5px;
        top: 0px;
        margin-top: 2px;
        color: #ef534e;
    }

    .gridview-booklist:hover .card-image>img.onempty-image {
        opacity: 1;
    }

    .gridview-booklist .card-image>img.onempty-image {
        display: block;
        width: 100%;
        border-top-right-radius: 3px;
        background-size: cover;
        opacity: 1;
        transition: 2s;
    }

    .gridview-booklist .book-title {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #111640;
        margin-bottom: 8px;
        font-family: inherit;
        font-weight: 500;
        line-height: 1.4;
        font-size: 16px;
    }

    .gridview-booklist .book-title:hover {
        color: #7d4e7c;
    }

    .gridview-booklist:hover .book-title {
        color: #7d4e7c;
    }

    .gridview-booklist .book-author {
        max-height: 16px;
        height: 16px;
        overflow: hidden;
        color: #999;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .gridview-booklist .highlight-author:hover {
        text-decoration: underline;
    }

    .gridview-booklist .book-category {
        overflow: hidden;
        max-height: 20px;
        height: 20px;
        font-size: 13px;
        line-height: 1.4;
        white-space: pre-wrap;
        margin-bottom: 10px;
        color: #77838f;
    }

    .gridview-booklist .card-prize-footer {
        border: none;
        border-top: 1px solid #e0e0e0;
        padding: 10px 0 10px;
        min-height: 45px;
    }

    .gridview-booklist .card-discount p {
        color: #e92135;
        background-color: transparent;
        text-align: center;
        border-radius: 2px;
        padding: 10px;
        font-weight: 600;
        line-height: 1;
        width: 100%;
        margin-bottom: 0;
        border: 1px solid #e9213540;
        font-size: 13px;
    }

    .gridview-booklist .previous-price {
        font-size: 11px;
        text-align: right;
        height: 13px;
        max-height: 13px;
    }

    .gridview-booklist .previous-price .icon-gbp {
        font-size: 12px;
    }

    .gridview-booklist .book-pricing {
        padding: 0;
    }

    .gridview-booklist .actual-price {
        height: 13px;
        max-height: 13px;
        font-size: 18px;
        text-align: right;
    }

    .gridview-booklist .card-inner .hover-buynowbtn {
        display: none;
    }

    .gridview-booklist .card-inner:hover .hover-buynowbtn {
        display: block;
    }

    .gridview-booklist .card-nav-footer button {
        width: 100%
    }

    .gridview-booklist .card-inner:hover .u-btn-success--air {
        color: #fff;
        background: #7d4e7c !important;
        box-shadow: 0 4px 17px rgba(125, 78, 124, 0.3);
        border-radius: 0;
    }


    /* View Book on grid view */


/* Login style */

.accesspage .main-body-section {
    min-height: 100vh;
    display: flex;
    align-items: inherit
}

@media (min-width: 992px) {
    .accesspage .main-body-section {
        min-height: 100vh;
        display: flex;
        align-items: inherit
    }
}

.accesspage .brand-section {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
}

.brand-image {
    display: inline-block;
    padding: 30px;
}

.left-body-section {
    background-repeat: repeat-x;
    background: #f9f9f9;
}

@media (min-width: 992px) {
    .left-body-section {
        min-height: 100vh;
        background: #111640;
        padding: 20px;
    }
}

.welcome-caption {
    color: #111640 !important;
    font-weight: 400 !important;
    margin-bottom: 5px !important;
    line-height: 1.5;
    font-family: inherit;
    margin-top: 10px;
    font-size: 22px;
}

.input-label {
    font-weight: 600;
    text-transform: uppercase !important;
    display: block !important;
    font-size: 80%;
    margin-bottom: 0.5rem;
    font-family: inherit;
    line-height: 1.5;
    color: inherit;
}

.navigator-link {
    color: #8c98a4;
    border-bottom: 1px dashed #97a4af;
    font-size: 80%;
    font-weight: 400;
    text-decoration: none;
    background-color: transparent;
    margin-top: -15px !important;
    cursor: pointer;
}

.navigator-link a {
    color: #8c98a4;
}

.navigator-link:hover a {
    color: #377dff !important;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
    background: #afa364;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #afa364;
}


/* My Cart page */

.width-4rem {
    width: 4rem;
}

.viewbook-slider ul.mi-current {
    pointer-events: auto;
}

.viewbook-slider ul li {
    display: inline-block;
    padding: 20px;
    max-width: 700px;
    -webkit-transform: translateX(600%);
    transform: translateX(600%);
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.no-js .viewbook-slider ul li {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.viewbook-slider ul li a,
.viewbook-slider ul li img {
    display: block;
    margin: 0 auto;
}

.viewbook-slider ul li a {
    outline: none;
    cursor: pointer;
}

.viewbook-slider ul li img {
    max-width: 100%;
    border: none;
    max-height: 370px;
    min-height: 370px;
}

.viewbook-slider ul li h4 {
    display: inline-block;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    padding: 20px 10px 0;
}

.viewbook-slider ul li:hover {
    opacity: 1;
}

.viewbook-slider nav {
    position: relative;
    top: 400px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid #d4d7dd;
    background: #fff;
}

.viewbook-slider nav a {
    display: inline-block;
    text-transform: uppercase;
    padding: 35px 10px 30px 30px;
    position: relative;
    color: #888;
    outline: none;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    font-size: 14px;
    font-weight: 600;
}

.viewbook-slider nav a:hover,
.viewbook-slider nav a.mi-selected {
    color: #111640;
}

.viewbook-slider nav a.mi-selected:after,
.viewbook-slider nav a.mi-selected:before {
    content: '';
    position: absolute;
    top: -5px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.viewbook-slider nav a.mi-selected::after {
    border-color: transparent;
    border-top-color: transparent;
    border-width: 20px;
    left: 50%;
    margin-left: -20px;
}

.viewbook-slider nav a.mi-selected::before {
    border-color: transparent;
    border-top-color: #d4d7dd;
    border-width: 27px;
    left: 50%;
    margin-left: -27px;
}


/* Move classes and animations */

.viewbook-slider ul:first-child li,
.no-js .viewbook-slider ul li {
    -webkit-animation: scaleUp 350ms ease-in-out both;
    animation: scaleUp 350ms ease-in-out both;
}

@-webkit-keyframes scaleUp {
    0% {
        -webkit-transform: translateX(0) scale(0);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
    }
}

@keyframes scaleUp {
    0% {
        -webkit-transform: translateX(0) scale(0);
        transform: translateX(0) scale(0);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

.viewbook-slider ul:first-child li:first-child {
    -webkit-animation-delay: 90ms;
    animation-delay: 90ms;
}

.viewbook-slider ul:first-child li:nth-child(2) {
    -webkit-animation-delay: 180ms;
    animation-delay: 180ms;
}

.viewbook-slider ul:first-child li:nth-child(3) {
    -webkit-animation-delay: 270ms;
    animation-delay: 270ms;
}

.viewbook-slider ul:first-child li:nth-child(4) {
    -webkit-animation-delay: 360ms;
    animation-delay: 360ms;
}


/* moveFromRight */

.viewbook-slider ul.mi-moveFromRight li {
    -webkit-animation: moveFromRight 350ms ease-in-out both;
    animation: moveFromRight 350ms ease-in-out both;
}


/* moveFromLeft */

.viewbook-slider ul.mi-moveFromLeft li {
    -webkit-animation: moveFromLeft 350ms ease-in-out both;
    animation: moveFromLeft 350ms ease-in-out both;
}


/* moveToRight */

.viewbook-slider ul.mi-moveToRight li {
    -webkit-animation: moveToRight 350ms ease-in-out both;
    animation: moveToRight 350ms ease-in-out both;
}


/* moveToLeft */

.viewbook-slider ul.mi-moveToLeft li {
    -webkit-animation: moveToLeft 350ms ease-in-out both;
    animation: moveToLeft 350ms ease-in-out both;
}


/* Animation Delays */

.viewbook-slider ul.mi-moveToLeft li:first-child,
.viewbook-slider ul.mi-moveFromRight li:first-child,
.viewbook-slider ul.mi-moveToRight li:nth-child(4),
.viewbook-slider ul.mi-moveFromLeft li:nth-child(4) {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.viewbook-slider ul.mi-moveToLeft li:nth-child(2),
.viewbook-slider ul.mi-moveFromRight li:nth-child(2),
.viewbook-slider ul.mi-moveToRight li:nth-child(3),
.viewbook-slider ul.mi-moveFromLeft li:nth-child(3) {
    -webkit-animation-delay: 90ms;
    animation-delay: 90ms;
}

.viewbook-slider ul.mi-moveToLeft li:nth-child(3),
.viewbook-slider ul.mi-moveFromRight li:nth-child(3),
.viewbook-slider ul.mi-moveToRight li:nth-child(2),
.viewbook-slider ul.mi-moveFromLeft li:nth-child(2) {
    -webkit-animation-delay: 180ms;
    animation-delay: 180ms;
}

.viewbook-slider ul.mi-moveToLeft li:nth-child(4),
.viewbook-slider ul.mi-moveFromRight li:nth-child(4),
.viewbook-slider ul.mi-moveToRight li:first-child,
.viewbook-slider ul.mi-moveFromLeft li:first-child {
    -webkit-animation-delay: 270ms;
    animation-delay: 270ms;
}


/* Animations */

@-webkit-keyframes moveFromRight {
    0% {
        -webkit-transform: translateX(600%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromLeft {
    0% {
        -webkit-transform: translateX(-600%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes moveToRight {
    0% {
        -webkit-transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(600%);
    }
}

@-webkit-keyframes moveToLeft {
    0% {
        -webkit-transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-600%);
    }
}

@keyframes moveFromRight {
    0% {
        -webkit-transform: translateX(600%);
        transform: translateX(600%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveFromLeft {
    0% {
        -webkit-transform: translateX(-600%);
        transform: translateX(-600%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveToRight {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(600%);
        transform: translateX(600%);
    }
}

@keyframes moveToLeft {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-600%);
        transform: translateX(-600%);
    }
}

.viewbook-slider {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Media Queries */

@media screen and (max-width: 910px) {
    .viewbook-slider nav {
        max-width: 90%;
    }
    .viewbook-slider nav a {
        font-size: 12px;
        padding: 40px 10px 30px 14px;
    }
}

@media screen and (max-width: 740px) {
    .viewbook-slider {
        height: 300px;
    }
    .viewbook-slider nav {
        top: 220px;
    }
}

@media screen and (max-width: 490px) {
    .viewbook-slider {
        text-align: center;
        height: auto;
    }
    .viewbook-slider ul {
        position: relative;
        display: inline;
        bottom: auto;
        pointer-events: auto;
    }
    .viewbook-slider ul li {
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transform: translateX(0) !important;
        transform: translateX(0) !important;
        padding: 10px 3px;
        min-width: 140px;
    }
    .viewbook-slider nav {
        display: none;
    }
}

@media (min-width: 576px) {
    .modal .viewsamplebook {
        max-width: 85% !important;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
    }
}

.viewsamplebook .modal-header {
    display: block !important;
}

.viewsamplebook .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 16px;
}

.viewsamplebook .dummyviewimg img {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

li a .nav-actionlists-button img {
    border-radius: 50%;
    vertical-align: middle;
    height: 30px;
    width: 30px;
}

.perfect-scrollbar-on::-webkit-scrollbar,
.panel-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #f1f4f5;
    /** or add it to the track **/
}

.perfect-scrollbar-on,
.panel-scrollbar {
    overflow: auto;
}

.perfect-scrollbar-on::-webkit-scrollbar-thumb,
.panel-scrollbar::-webkit-scrollbar-thumb {
    background: #B6C5CB;
}


/*poup style starts*/

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background: #00000038;
}

.popup-open .popup {
    overflow-x: hidden;
    overflow-y: auto;
}

.popup .popup-header .close {
    color: #999999;
    font-size: 26px;
    line-height: 0.8;
    font-weight: 400;
}

.popup.right .popup-inner {
    position: fixed;
    margin: auto;
    width: 30%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.popup.right.fade.in .popup-inner {
    right: 0;
    top: 0;
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.35) !important;
}

.popup.right.fade .popup-inner {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.popup-content {
    border-radius: 0;
    border: none;
}

.popup.right .popup-content {
    height: 100%;
    background: #fff;
}

.popup-header {
    padding: 15px;
    border-bottom: 1px solid #ffffff;
    min-height: 16.43px;
    background-color: #00000016;
    font-weight: 500;
}

.popup-title {
    margin: 0;
    line-height: 1.42857143;
    color: #444;
    font-size: 15px;
    font-weight: 500;
}

.popup.right .popup-content .content-area {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    min-height: calc(100vh - 25vh);
    max-height: calc(100vh - 25vh);
    padding: 15px;
}

.popup-title {
    margin: 0;
    line-height: 1.42857143;
    color: #2a2b33;
    font-size: 16px;
    font-weight: 400;
}

.popup-body {
    position: relative;
    height: calc(100vh - 25vh);
}

.popup.right .popup-body {
    padding: 0;
}

.popup-footer {
    padding: 0 15px;
    bottom: 0;
    font-size: 12px;
    border-top: 1px dashed #f8f8f8;
    position: absolute;
    width: 100%;
    margin-top: 0;
    background-color: #f5f5f5;
}

.popup-footer button {
    margin-left: 10px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #5a5f69;
    background-color: #fff;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: 500;
    color: #111640;
    border-right: 1px solid transparent;
}

.nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 20px 35px;
    position: relative;
    transition: 2s;
    background: #b3b1b1;
    color: #fff;
    border-right: 1px solid;
}

.tab-contentarea {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    border: 1px solid #e7eaf3;
    border-top: none;
}

.tab-contentarea .form-control,
.tab-contentarea .custom-select {
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #1e2022;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d4d7dd;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
}

.file {
    position: relative;
    overflow: hidden;
    top: 30px;
    left: 30px;
}

.file input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
}

.btn-danger {
    color: #fff;
    background-color: #e92135;
    border-color: #e92135;
}

.btn-danger:hover {
    color: #fff;
    background-color: #e92135;
    border-color: #e92135;
}

.btn-danger:focus,
.btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 33, 53, 0.36);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #e92135;
    border-color: #e92135;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #e92135;
    border-color: #e92135;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 33, 53, 0.36);
}

.c-5 {
    color: #555;
}

.fsize-14 {
    font-size: 14px;
}

.fsize-15 {
    font-size: 15px;
}

.fsize-16 {
    font-size: 16px;
}

.fsize-17 {
    font-size: 17px;
}

.fsize-18 {
    font-size: 18px;
}

.fsize-19 {
    font-size: 19px;
}

.fsize-20 {
    font-size: 20px;
}

.fsize-21 {
    font-size: 21px;
}

.fsize-22 {
    font-size: 22px;
}

.billingaddress-section .view-addresssection .add-addrescard {
    background: #f1f1f121;
}

.billingaddress-section .view-addresssection .delivery-and-billing {
    background-color: #f1f1f1;
}

.rating-icon i {
    color: #ef534e;
    font-size: 16px;
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 10px;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #f6f9fc;
    border-radius: 0.25rem;
    border: 1px solid #eee;
}

.user-image img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.username {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px dotted #eee;
    padding: 3px 0px;
    margin-bottom: 3px;
}

.description {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5 !important;
    display: inline-block;
    color: #77838f;
}

.author-replies {
    border-top: 1px dotted #aaa;
}

.rating-countwithstar .star-icons {
    color: #ef534e;
}

.panel-group {
    margin-bottom: 20px;
    margin-top: 20px;
}

.panel-default {
    border-color: #ddd;
}

.panel-group .panel {
    margin-bottom: 5px;
    border-radius: 4px;
    border: 1px solid #eee;
    cursor: pointer;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
    padding: 10px 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd;
}

.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
    border-top: 1px solid #ddd;
}

.panel-body {
    padding: 15px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-body p {
    font-size: 12px;
    margin-bottom: 0px;
}

.booksslidingpanel .carousel-indicators li {
    background-color: red;
}

.booksslidingpanel .carousel-indicators {
    bottom: 0;
}

.booksslidingpanel .carousel-control-prev-icon,
.booksslidingpanel .carousel-control-next-icon {
    background-color: red;
}

.booksslidingpanel .carousel-control-next,
.booksslidingpanel .carousel-control-prev {
    right: 0;
    width: 3%;
}

.view-moreaction .dropdown-toggle::after {
    margin-left: 0.5rem;
    content: none;
}

.ownbook-avatar {
    width: 12rem;
    height: 8rem;
}

.ownbook-detailpanel {
    padding: 0 0 0 15px;
    display: block;
    width: 100%;
}

.ownbook-title {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    line-height: 1;
    margin-bottom: 0px;
}

.quickglance {
    padding: 0 30px;
    border-right: 1px solid #ccc;
}

.quickglance:last-child {
    border-right: none;
}

.quickglance:first-child {
    padding-left: 0;
}

.quickglance h4 {
    font-size: 14px;
    color: #444;
    margin-bottom: 0;
    text-align: center;
}

.ownbook-viewstatus {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.5;
    color: #77838f;
}

.actioncount {
    font-size: 25px;
}

.quickglance .actiontext {
    font-size: 13px;
    font-weight: 400;
    color: #99aab4;
}

.view-moreaction .dropdown-menu,
.ownbook-viewstatus .dropdown-menu {
    padding: 10px;
    font-size: 12px;
    border: 1px solid rgb(238, 238, 238);
    margin: 0px;
    top: 0px;
    left: 0px;
}

.view-moreaction .dropdown-item,
.ownbook-viewstatus .dropdown-item {
    padding: 5px;
    color: #777 !important;
}

.button-actions {
    float: right;
    position: absolute;
    right: 0;
    top: 80%;
}

.width-100 {
    width: 100% !important;
}

.initiailbannerimage {
    background: url(../img/banners/aggbanner-01.jpg);
    /* background: -webkit-linear-gradient(0deg, #999 0%, #ccc 100%); */
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
}

.banner-content-panel {
    position: relative;
    z-index: 2;
    min-height: 440px;
    min-height: 440px;
}

.banner-sub-content {
    padding: 12.5% 0;
}

.banner-title {
    line-height: 1.2;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    width: 50%;
}

.banner-lead {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    width: 50%;
}

.border {
    border: 1px solid #afa364 !important;
}

.address-data {
    padding: 0 0 10px 0;
    display: block;
    color: #6f6f6f;
    font-weight: 400;
    font-size: 12px;
}

.copyrights-ref {
    color: #474747;
    font-weight: 500;
}

.user-nameorguest {
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    position: relative;
    top: -7px;
    color: #444;
}

.user-logindetails {
    background: #edede9;
    border-radius: 6px;
    margin-left: 10px;
}

.H1-lead-section {
    margin-bottom: 40px;
}

.listcate-title {
    color: rgb(175, 163, 100) !important;
    font-size: 24px;
    font-weight: 500;
}

.listcate-title-caption {
    color: #000;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
}

.view-relatedtemplates .listcate-section {
    padding: 15px 0;
}

.modal-bgimage {
    background-image: url(../img/banners/main-bg.gif);
    height: 530px;
}

.carousel-previcon i,
.carousel-nexticon i {
    font-size: 20px;
    color: #77838f;
    background: rgba(119, 131, 143, 0.1);
    width: 30px;
    height: 30px;
    line-height: 1.5;
    border-radius: 50%;
}

.carousel-nexticon i:hover,
.carousel-previcon i:hover,
.carousel-previcon i:focus,
.carousel-nexticon i:focus {
    color: #fff;
    background: #77838f;
    box-shadow: 0 4px 17px rgba(119, 131, 143, 0.35);
    border-radius: 50px;
}

.btn-logindanger {
    color: #fff;
    background-color: rgb(175, 163, 100) !important;
    border-color: rgb(175, 163, 100) !important;
}

.btn-logindanger:hover {
    color: #fff;
    background-color: rgb(175, 163, 100) !important;
    border-color: #afa364;
}

.btn-logindanger:focus,
.btn-logindanger.focus {
    box-shadow: 0 0 0 0.2rem rgba(175, 163, 100, 0.36);
}

.btn-logindanger.disabled,
.btn-logindanger:disabled {
    color: #fff;
    background-color: #afa364;
    border-color: #afa364;
}

.btn-logindanger:not(:disabled):not(.disabled):active,
.btn-logindanger:not(:disabled):not(.disabled).active,
.show>.btn-logindanger.dropdown-toggle {
    color: #fff;
    background-color: #afa364;
    border-color: #afa364;
}

.btn-logindanger:not(:disabled):not(.disabled):active:focus,
.btn-logindanger:not(:disabled):not(.disabled).active:focus,
.show>.btn-logindanger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(175, 163, 100, 0.36);
}

.zui-table {
    border: none;
    border-right: solid 1px #DDEFEF;
    border-collapse: separate;
    border-spacing: 0;
    font: normal 13px Arial, sans-serif;
}

.zui-table thead th {
    background-color: #DDEFEF;
    border: none;
    color: #336B6B;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #fff;
    white-space: nowrap;
}

.zui-table tbody td {
    border-bottom: solid 1px #DDEFEF;
    color: #333;
    padding: 10px;
    text-shadow: 1px 1px 1px #fff;
    white-space: nowrap;
}

.zui-wrapper {
    position: relative;
}

.zui-scroller {
    margin-left: 141px;
    overflow-x: scroll;
    overflow-y: visible;
    padding-bottom: 5px;
    width: 300px;
}

.zui-table .zui-sticky-col {
    border-left: solid 1px #DDEFEF;
    border-right: solid 1px #DDEFEF;
    left: 0;
    position: absolute;
    top: auto;
    width: 120px;
}

.custom-checkbox .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    height: 18px;
    margin-left: -1.25rem;
}

.pageA4 {
    width: 21cm;
    /* height: 29.7cm; */
}

@media print {
    .page-break {
        display: block;
        page-break-before: always;
    }
    
}

@media print {
    .pageA4 {
        box-shadow: none;
        margin: 0;
        width: auto;
        height: auto;
    }
    .noprint {
        display: none;
    }
    .enable-print {
        display: block;
    }
}

.zoomcontrol-btn {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 99;
}

.background-images {
    height: 300px;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    top: 0;
}

.background-images img {
    height: 300px;
    width: 100%;
}

.title--name {
    height: 300px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.19);
    padding: 0;
    opacity: 1;
    position: absolute;
    top: 0;
}

.title--name h2.h5 {
    padding: 110px;
    text-align: center;
    margin: 0;
    font-size: 50px;
    color: #fff;
}

.background--imageorganisation {
    width: 100%;
}


/** To make the loader 100% height **/

.backdrop {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.homepage--listsection {
    min-height: 500px;
    max-height: auto;
}

.ico {
    width: 70px;
    padding-right: 15px;
}

.action>div {
    width: 120px;
}

.action>div .btn {
    border-radius: 70px !important;
}

.login--formdetails {
    padding: 100px 150px!important;
    height: 100%;
    /* min-height: calc(100vh - 0vh);
    max-height: calc(100vh - 0vh);
    overflow-y: scroll; */
}

.login--formdetails .form-control {
    height: 45px;
}

.bg-white {
    background-color: #fff!important;
}

.card-norecords-found {
    margin: 20px 30px;
    padding: 20px;
    min-height: 200px;
        background: #cccccc26;
}

.card-norecords-found h4 {
    padding: 0;
    text-align: center;
    font-size: 14px;
}

.card-norecords-found img {
    width: 125px;
    opacity: 0.3;
    margin: 0 auto;
    height: 120px;
}


/* only agg */

.firstdispalyed-modal__body {
    min-height: calc(100vh - 26vh);
    max-height: calc(100vh - 26vh);
    overflow-y: scroll;
}

#pagezoombtn {
    bottom: 70px!important;
}

.bg-white {
    background-color: #fff!important;
}

.z-index9999 {
    z-index: 9999!important;
}

.cursor-pointer {
    cursor: pointer!important;
}

.cursor-default {
    cursor: default!important;
}

.view--image__dialog .modal-body {
    background: transparent!important;
}

.passwd-visible {
    background: #dddddd!important;
    color: #1e2022!important;
}

.primary-nav-menus .collapse {
    display: block;
}

.copyright-right {
    float: left;
    text-align: right;
}

.choosecomponent--body__listing {
    padding-left: 0;
    padding-right: 0;
}


/* ecom hompage.css */

.listcate-section {
    padding: 0px 5%;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: block;
    width: 100%;
}

.listcate-section .carousel-control-next {
    right: auto;
    left: -80px!important;
}

.listcate-section .carousel-control-prev {
    right: -80px!important;
    left: auto;
}

.listcate-section .carousel-prev-icons i,
.carousel-next-icons i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    color: black;
    line-height: 1.25;
}

.listcate-section .booksslidingpanel .carousel-indicators li {
    background-color: #ffffff70;
}

.listcate-section .carousel-indicators .active {
    background-color: #fff!important;
}

.listcate-section .booksslidingpanel .carousel-indicators {
    bottom: -60px;
}

.listcate-section .booksslidingpanel {
    width: 20px;
    height: 20px;
    line-height: 2;
    border-radius: 50px;
    background-color: transparent;
    ;
    color: #fff;
    position: relative;
    display: inline-block;
}

.listcate-section .booksslidingpanel:hover {
    width: 20px;
    height: 20px;
    line-height: 2;
    border-radius: 50px;
    background-color: transparent;
    color: #fff;
    position: relative;
    display: inline-block;
}

.position-relative {
    position: relative !important;
}

.position-absolute-top-0 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.position-absolute-bottom-0 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}


/*------------------------------------
  Icon Air Styles
------------------------------------*/


/* primary air */

.u-icon-primary--air {
    color: #7d4e7c;
    background: rgba(55, 125, 255, 0.1);
}

.u-icon-primary--air[href]:hover,
.u-icon-primary--air[href]:focus,
.u-icon-primary--air[href]:active {
    color: #fff;
    background: #7d4e7c;
}


/* secondary air */

.u-icon-secondary--air {
    color: #77838f;
    background: rgba(119, 131, 143, 0.1);
}

.u-icon-secondary--air[href]:hover,
.u-icon-secondary--air[href]:focus,
.u-icon-secondary--air[href]:active {
    color: #fff;
    background: #77838f;
}


/* success air */

.u-icon-success--air {
    color: #00c9a7;
    background: rgba(0, 201, 167, 0.1);
}

.u-icon-success--air[href]:hover,
.u-icon-success--air[href]:focus,
.u-icon-success--air[href]:active {
    color: #fff;
    background: #00c9a7;
}


/* info air */

.u-icon-info--air {
    color: #00dffc;
    background: rgba(0, 223, 252, 0.1);
}

.u-icon-info--air[href]:hover,
.u-icon-info--air[href]:focus,
.u-icon-info--air[href]:active {
    color: #1e2022;
    background: #00dffc;
}


/* warning air */

.u-icon-warning--air {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.u-icon-warning--air[href]:hover,
.u-icon-warning--air[href]:focus,
.u-icon-warning--air[href]:active {
    color: #1e2022;
    background: #ffc107;
}


/* danger air */

.u-icon-danger--air {
    color: #de4437;
    background: rgba(222, 68, 55, 0.1);
}

.u-icon-danger--air[href]:hover,
.u-icon-danger--air[href]:focus,
.u-icon-danger--air[href]:active {
    color: #fff;
    background: #de4437;
}


/* light air */

.u-icon-light--air {
    color: #f6f9fc;
    background: rgba(246, 249, 252, 0.1);
}

.u-icon-light--air[href]:hover,
.u-icon-light--air[href]:focus,
.u-icon-light--air[href]:active {
    color: #1e2022;
    background: #f6f9fc;
}


/* dark air */

.u-icon-dark--air {
    color: #1e2022;
    background: rgba(30, 32, 34, 0.1);
}

.u-icon-dark--air[href]:hover,
.u-icon-dark--air[href]:focus,
.u-icon-dark--air[href]:active {
    color: #fff;
    background: #1e2022;
}


/* facebook air */

.u-icon-facebook--air {
    color: #3b5998;
    background: rgba(59, 89, 152, 0.1);
}

.u-icon-facebook--air[href]:hover,
.u-icon-facebook--air[href]:focus,
.u-icon-facebook--air[href]:active {
    color: #fff;
    background: #3b5998;
}


/* google air */

.u-icon-google--air {
    color: #d14130;
    background: rgba(209, 65, 48, 0.1);
}

.u-icon-google--air[href]:hover,
.u-icon-google--air[href]:focus,
.u-icon-google--air[href]:active {
    color: #fff;
    background: #d14130;
}


/* twitter air */

.u-icon-twitter--air {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.u-icon-twitter--air[href]:hover,
.u-icon-twitter--air[href]:focus,
.u-icon-twitter--air[href]:active {
    color: #fff;
    background: #1da1f2;
}


/* instagram air */

.u-icon-instagram--air {
    color: #3f729b;
    background: rgba(63, 114, 155, 0.1);
}

.u-icon-instagram--air[href]:hover,
.u-icon-instagram--air[href]:focus,
.u-icon-instagram--air[href]:active {
    color: #fff;
    background: #3f729b;
}


/* github air */

.u-icon-github--air {
    color: #24292e;
    background: rgba(36, 41, 46, 0.1);
}

.u-icon-github--air[href]:hover,
.u-icon-github--air[href]:focus,
.u-icon-github--air[href]:active {
    color: #fff;
    background: #24292e;
}


/*------------------------------------
    Icon Border Styles
  ------------------------------------*/

[class*="u-icon-brd"] {
    border-width: 0.0625rem;
    border-style: solid;
}


/* primary */

.u-icon-brd-primary {
    color: #377dff;
    background: transparent;
    border-color: #377dff;
}

.u-icon-brd-primary[href]:hover,
.u-icon-brd-primary[href]:focus,
.u-icon-brd-primary[href]:active {
    color: #fff;
    background: #377dff;
    border-color: #377dff;
}


/* secondary */

.u-icon-brd-secondary {
    color: #77838f;
    background: transparent;
    border-color: #77838f;
}

.u-icon-brd-secondary[href]:hover,
.u-icon-brd-secondary[href]:focus,
.u-icon-brd-secondary[href]:active {
    color: #fff;
    background: #77838f;
    border-color: #77838f;
}


/* success */

.u-icon-brd-success {
    color: #00c9a7;
    background: transparent;
    border-color: #00c9a7;
}

.u-icon-brd-success[href]:hover,
.u-icon-brd-success[href]:focus,
.u-icon-brd-success[href]:active {
    color: #fff;
    background: #00c9a7;
    border-color: #00c9a7;
}


/* info */

.u-icon-brd-info {
    color: #00dffc;
    background: transparent;
    border-color: #00dffc;
}

.u-icon-brd-info[href]:hover,
.u-icon-brd-info[href]:focus,
.u-icon-brd-info[href]:active {
    color: #1e2022;
    background: #00dffc;
    border-color: #00dffc;
}


/* warning */

.u-icon-brd-warning {
    color: #ffc107;
    background: transparent;
    border-color: #ffc107;
}

.u-icon-brd-warning[href]:hover,
.u-icon-brd-warning[href]:focus,
.u-icon-brd-warning[href]:active {
    color: #1e2022;
    background: #ffc107;
    border-color: #ffc107;
}


/* danger */

.u-icon-brd-danger {
    color: #de4437;
    background: transparent;
    border-color: #de4437;
}

.u-icon-brd-danger[href]:hover,
.u-icon-brd-danger[href]:focus,
.u-icon-brd-danger[href]:active {
    color: #fff;
    background: #de4437;
    border-color: #de4437;
}


/* light */

.u-icon-brd-light {
    color: #f6f9fc;
    background: transparent;
    border-color: #f6f9fc;
}

.u-icon-brd-light[href]:hover,
.u-icon-brd-light[href]:focus,
.u-icon-brd-light[href]:active {
    color: #1e2022;
    background: #f6f9fc;
    border-color: #f6f9fc;
}


/* dark */

.u-icon-brd-dark {
    color: #1e2022;
    background: transparent;
    border-color: #1e2022;
}

.u-icon-brd-dark[href]:hover,
.u-icon-brd-dark[href]:focus,
.u-icon-brd-dark[href]:active {
    color: #fff;
    background: #1e2022;
    border-color: #1e2022;
}


/* white */

.u-icon-brd-white {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.u-icon-brd-white[href]:hover,
.u-icon-brd-white[href]:focus,
.u-icon-brd-white[href]:active {
    color: #1e2022;
    background: #fff;
    border-color: #fff;
}


/* facebook */

.u-icon-brd-facebook {
    color: #3b5998;
    background: transparent;
    border-color: #3b5998;
}

.u-icon-brd-facebook[href]:hover,
.u-icon-brd-facebook[href]:focus,
.u-icon-brd-facebook[href]:active {
    color: #fff;
    background: #3b5998;
    border-color: #3b5998;
}


/* google */

.u-icon-brd-google {
    color: #d14130;
    background: transparent;
    border-color: #d14130;
}

.u-icon-brd-google[href]:hover,
.u-icon-brd-google[href]:focus,
.u-icon-brd-google[href]:active {
    color: #fff;
    background: #d14130;
    border-color: #d14130;
}


/* twitter */

.u-icon-brd-twitter {
    color: #1da1f2;
    background: transparent;
    border-color: #1da1f2;
}

.u-icon-brd-twitter[href]:hover,
.u-icon-brd-twitter[href]:focus,
.u-icon-brd-twitter[href]:active {
    color: #fff;
    background: #1da1f2;
    border-color: #1da1f2;
}


/* instagram */

.u-icon-brd-instagram {
    color: #3f729b;
    background: transparent;
    border-color: #3f729b;
}

.u-icon-brd-instagram[href]:hover,
.u-icon-brd-instagram[href]:focus,
.u-icon-brd-instagram[href]:active {
    color: #fff;
    background: #3f729b;
    border-color: #3f729b;
}


/* github */

.u-icon-brd-github {
    color: #24292e;
    background: transparent;
    border-color: #24292e;
}

.u-icon-brd-github[href]:hover,
.u-icon-brd-github[href]:focus,
.u-icon-brd-github[href]:active {
    color: #fff;
    background: #24292e;
    border-color: #24292e;
}


/*------------------------------------
    Icon Sizes
  ------------------------------------*/


/* Extra Small */

.u-icon--xs {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.625rem;
    border-radius: 0.25rem;
}


/* Small */

.u-icon--sm {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
}


/* Medium */

.u-icon--md {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}


/* Large */

.u-icon--lg {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    border-radius: 0.25rem;
}


/* Extra Large */

.u-icon--xl {
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
    border-radius: 0.25rem;
}


/*------------------------------------
  Icon
------------------------------------*/

.u-icon {
    position: relative;
    z-index: 1;
    line-height: 0.7;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 2.125rem;
    height: 2.125rem;
    font-size: 0.9375rem;
    border-radius: 0.25rem;
    transition: 0.3s ease-in-out;
}

.u-icon__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.u-icon__inner-bottom-minus {
    top: 90%;
}
.custom-checkbox input[type=checkbox], input[type=radio] {
    margin: 5px 0 0;
    }

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.login-process-modal .passwd-visible {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    height: 36px;
    background: #dddddd!important;
    color: #1e2022!important;
}

.searchbuy-items ul .createeventbtn {
    list-style: none;
    margin: 18px 2px!important;
    text-align: center;
    padding: 7px 15px!important;
} 

.searchbuy-items ul .user-information {
    list-style: none;
    padding: 0px 10px;
    margin: 13px 5px;
    border-radius: 6px;
    background: #edede9;
}

.searchbuy-items .userdetail .myid-details {
    list-style: none;
    padding: 0px;
    margin: 0;
        cursor: pointer;
}

.searchbuy-items .userdetail .myid-details a {
    padding: 10px 15px;
}

.sharedbooks .book-delete {
    color: #808080bf;
    font-weight: 500;
}

.my--library .booksslidingpanel .carousel-indicators {
    bottom: -25px;
}

.product--page .owl-prev {
    position: absolute!important;
    top: 40%!important;
    left: -35px;
}

.product--page .owl-next {
    position: absolute!important;
    top: 40%!important;
    right: -35px;
}

.organization--slides .owl-prev {
    position: absolute!important;
    top: 50%!important;
    left: 0!important;
}

.organization--slides .owl-next {
    position: absolute!important;
    top: 50%!important;
    right: 0!important;
}

 .my--library .owl-prev{
    position: absolute!important;
    top: 40%!important;
    left: -35px;
}

.my--library .owl-next {
    position: absolute!important;
    top: 40%!important;
    right: -35px;
}

.image-section img {
    width: 10%;
    padding: 0;
}

/* mhrf */
.bk-page{
    background: red;
    color:#fff;
    height: 398px;
    overflow: hidden;
    box-sizing: border-box;
}
.view-booksrhs .viewbook-details{
    height: 515px;
    box-shadow: none;
    border: 1px solid #ddd;
}
.product--page .view-booksrhs .gridview-booklist .actual-price{
    padding: 0;
}
.view-booksrhs .viewprod-section .viewbook-details:hover{
 box-shadow: 0 1px 6px 2px rgba(138, 138, 138, 0.5);
}
.product--page .viewbook-details{
    border: none;
    background: transparent;
    border-right: none;
}
 .preview-product .bg-imagescover{
     height: 250px;
 }
.preview-product  .viewbook-details{
    border: none;
}

.preview-product .btn {
    margin: 10px;
    float: right;
}
.homepage---content .owl-prev{  
     position: absolute;
    left: -30px;
    top: 40%;
}
.homepage---content .owl-next{
    position: absolute;
    right: -30px;
    top: 40%;
}
.organization--slides .card-norecords-found{
    margin: 0;
}
.organization--slides .card-norecords-found img{
      width: 150px!important;
    opacity: 0.3;
    margin: 0 auto;
    height: 95px!important;
}
.homepage---content .listcate-section .card-norecords-found {
    margin: 20px 200px;
}
.book-comp .gridster-main-content .editgridster-section{
    word-break: break-word;
}
/* tracking css */
 .tracking-details .tracking { 
      padding: 10px 0px;
    font-size: 20px;
    font-weight: 600;
}
.advanced-search-event .bookevent-section{
    display: inline-block;
}
.proceedbooking-section {
    border-radius: 6px;
}
.bookevent-section .control-label{
        font-weight: 400;
}
.tracking-details .table-fw-widget thead tr:first-of-type{    background: #aaa;
    height: 45px;
    color: #fff;}
    .table>thead>tr>th {
    vertical-align: middle;
    border-bottom: 2px solid #ddd;
}
.tracking-details th{
    vertical-align: middle;
}
.tracking-details td input{
    height: 30px;
    width: 72%;
        vertical-align: middle;
}
.navbar-nav .nav-item.active a{
    border-bottom: 3px solid #7d4e7c;
        color: #7d4e7c !important;
}


.about-section{
	padding-top:40px;
}
.about-image {
    position: relative;
}
/*.about-image::before {
    position: absolute;
    content: '';
    background-image: url(https://i.ibb.co/d6KQxz0/dots.jpg);
    background-position: center center;
    background-size: 100%;
    width: 375px;
    height: 350px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
}*/
.about-image .single-image {
    width: 360px;
}
.float-left {
    float: left;
}
.about-image .single-image img {
    width: 100%;
}
.about-image .single-image.image-tow {
/*    margin-top: -200px;*/
    position: relative;
    z-index: 5;
}

.about-image .single-image {
    width: 80%;
}
.float-right {
    float: right;
}
.about-content h3,
.partners-section h3{
	color:#333;
	font-family: 'Poppins', sans-serif;
	padding-bottom:10px;
}

.about-content p{
	margin-bottom: 0px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #646464;
	font-family: 'Poppins', sans-serif;
}
.main-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border: 1px solid #774e79;
    padding: 0 30px;
    line-height: 48px;
    color: #fff;
    transition: all .8s ease-out 0s;
    background-color: #774e79;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration:
    none;
}

.main-btn:hover{
	background:#333;
	color:#fff;
	border-color:#333;
    transition: all .8s ease-out 0s;
	text-decoration:none;
}
.job-aplication-page .skills-container ul li a{
    margin-top: 8px;
}
/* new */
.file-upload{
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 170px;
    top: 0;
    left: 0;
}
.image-position-parent{
    position:relative !important;
       text-align: center;
    background: #fff;
    padding: 10% 0;
    border-radius: 5px;
    border: 2px dashed #ccc;
    width: 80%;
    margin: auto;
    margin-top: 20px;
}
 .img-position{
    position:absolute !important;
    top:0px;
    left: 0px;
}

.img-fluid{
    height: 400px !important;
    width:550px !important;
}
.btn-info-xs {
    font-size: 12px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    line-height: 2;
    color: #fff;
    letter-spacing: inherit;
    text-transform: uppercase;
    background: #4bb7d5;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: #4bb7d5;
    border-image: initial;
    padding: 3px 30px;
    transition: all 0.8s ease-out 0s;
    text-decoration: none;
}
.optionlist{
    line-height: 2;
}
#create-jobs .skills-container,
#unlinked-skills-modal .skills-container{
    border-bottom: none;
}
.icon-norecord-added .fa{
        font-size: 40px;
    color: #ececec;
}
.score{
    text-align: right;
    float: right;
    color: #fff;
    background: #2da0c0;
    padding: 5px 10px;
    border-radius: 2px;
    opacity: .8;
    font-size: 12px;
    position: relative;
    top: -5px;
}
.clientinfomodal .tabcustomers .tabulartab {
    width: 20%!important;
}
.heightpage{
height: calc(100vh);
}
.skills-container:last-child {
    border-bottom: none!important;
}
.skills-container {
      padding-top: 15px;
    display: inline-block;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 0;
    float: left;
}
.skill-list {
    display: flex;
}
.skills-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.skills-container ul li {
    float: left;
    width: auto;
    display: flex;
    padding-bottom: 5px;
}
.skills-container ul li a {
    border: 1px solid #ccc;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #444;
    margin-right: 5px;
    vertical-align: middle;
    font-weight: 500;
    background-color: #e1ebfb;
    color: #0162ff;
}
.filtericon{
        padding: 0!important;
    line-height: 1!important;
}
.filtericon .material-symbols-outlined{
    color: #19a7ce!important;
    padding: 7px 10px!important;
    font-weight: 500;
}
    .theme-icon {
    color: #1e1f55!important;
}
.theme-nav {
    color: #3e3e3e!important;
    font-weight: 400!important;
    font-size: 12px!important;
    text-transform: uppercase;
}
.login-icon .userlogininon {
    font-size: 25px;
}
.login-icon {
     border: none;
    border-radius: 3px;
    padding: 2px 0px!important;
    width: auto;
    margin: 10px 5px!important;
    font-size: 19px;
    position: relative;
    top: 10px;
}
.filtericon:hover .material-symbols-outlined{
 font-weight: 500;
}
.linkdelegates,
.linkdelegates:hover{
 padding: 5px 0;
    margin-bottom: 10px;
    color: #6228ba;
    font-weight: 400;
    font-size: 13px;
    border-bottom: 1px solid #c2c8df;
    cursor: pointer;   
}

.faqsection .card-body{
    background: #f0f8ff;
}

.faqsection .card{
 margin-bottom: 10px;
}
.faqsection .card-header{
    border-radius: 10px;    padding: 10px 1rem;    border-top: none;border-bottom: none;
}