@font-face {
    font-family: 'OpenSans';
    font-weight: 800;
    src: url(../fonts/Open_Sans/OpenSans-ExtraBold.ttf) format('truetype');
}

/* ExtraBold Italic*/

@font-face {
    font-family: 'OpenSans';
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf) format('truetype');
}

/* Bold */

@font-face {
    font-family: 'OpenSans';
    font-weight: 700;
    src: url(../fonts/Open_Sans/OpenSans-Bold.ttf) format('truetype');
}

/* Bold Italic*/

@font-face {
    font-family: 'OpenSans';
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/Open_Sans/OpenSans-BoldItalic.ttf) format('truetype');
}

/* SemiBold */

@font-face {
    font-family: 'OpenSans';
    font-weight: 600;
    src: url(../fonts/Open_Sans/OpenSans-SemiBold.ttf) format('truetype');
}

/* SemiBold Italic*/

@font-face {
    font-family: 'OpenSans';
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf) format('truetype');
}

/* Regular */

@font-face {
    font-family: 'OpenSans';
    font-weight: 400;
    src: url(../fonts/Open_Sans/OpenSans-Regular.ttf) format('truetype');
}

/* Italic */

@font-face {
    font-family: 'OpenSans';
    font-weight: 400;
    font-style: italic;
    src: url(../fonts/Open_Sans/OpenSans-Italic.ttf) format('truetype');
}

/* Light */

@font-face {
    font-family: 'OpenSans';
    font-weight: 300;
    src: url(../fonts/Open_Sans/OpenSans-Light.ttf) format('truetype');
}

/* Light Italic*/

@font-face {
    font-family: 'OpenSans';
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Open_Sans/OpenSans-LightItalic.ttf) format('truetype');
}

@-webkit-keyframes swing {

    0%,
    30%,
    50%,
    70%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@keyframes swing {

    0%,
    30%,
    50%,
    70%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@-webkit-keyframes sonar {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes sonar {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes tracking-out-contract {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
}
@keyframes tracking-out-contract {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
}

main.page-content{
    display: flex !important;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100%;
}

.showed {
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
            animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
.hideded {
    -webkit-animation: tracking-out-contract 0.7s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
            animation: tracking-out-contract 0.7s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
body {
    font-family: 'OpenSans';
    /*font-size: 1.15rem*/
}

h1,
h2,
h3,
h4,
h5,
legend {
    font-weight: bold;
    font-style: italic;
}

label,
footer h4 {
    font-weight: bold;
    font-style: initial;
    text-transform: uppercase;
}

:focus,
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

a {
    color: #52a9fa;
    text-decoration: none;
    background-color: transparent;
}

a:hover,
a:focus {
    outline: 0;
    color: #244a6d;
    text-decoration: none;
    background-color: transparent;
}

.btn {
    border-radius: 0rem;
    border-width: 4px;
    font-weight: bold;
}

.btn:not(.material-icons) {
    font-weight: 800;
    text-transform: uppercase;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 1px rgb(36 74 109 / 70%);
}

.btn-sq {
  width: 100px !important;
  height: 100px !important;
  font-size: 10px;
  margin: 5px;
  padding: 5px;
}

.btn-sq.active{
    border-width: 3px!important;
}

.select-aseguradora{
    max-height: 600px;
    flex-wrap: wrap!important;
    overflow-y: auto;
    margin-left: -5px;
    margin-right: -5px;
    border-bottom: 2px solid #244a6d ;
    padding-bottom: 15px;
}

.default-theme .sidebar-wrapper {
    background-color: #244a6d;
}

.default-theme .sidebar-wrapper .sidebar-item {
    border-top: 1px solid #ffffff;
}

.default-theme .sidebar-wrapper .sidebar-item:first-child {
    border-top: none;
}

.default-theme .sidebar-wrapper a:not(.dropdown-item),
.default-theme .sidebar-wrapper .sidebar-header,
.default-theme .sidebar-wrapper .sidebar-search input,
.default-theme .sidebar-wrapper .sidebar-search i {
    color: #ffffff;
}

.default-theme .sidebar-wrapper a:not(.dropdown-item):hover,
.default-theme .sidebar-wrapper .sidebar-menu li.active>a {
    color: #d8d8d8;
}

.default-theme .sidebar-wrapper .sidebar-search input.search-menu,
.default-theme .sidebar-wrapper .sidebar-search .input-group-text {
    background-color: #244a6d;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 1px;
}

.default-theme .sidebar-wrapper .sidebar-menu a:hover i,
.default-theme .sidebar-wrapper .sidebar-menu a:hover:before,
.default-theme .sidebar-wrapper .sidebar-menu li.active a i {
    color: #52a9fa;
}

.default-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div {
    background-color: rgba(255, 255, 255, 0.1);
}

.default-theme .sidebar-wrapper .sidebar-menu .header-menu span {
    color: #ffffff;
    text-transform: uppercase;
}

.default-theme .sidebar-wrapper .sidebar-footer {
    background-color: #244a6d;
    -webkit-box-shadow: 0px -1px 5px #244a6d;
    box-shadow: 0px -1px 5px #244a6d;
    border-top: 1px solid #244a6d;
}

.default-theme .sidebar-wrapper .sidebar-footer>div:first-child {
    border-left: none;
}

.default-theme .sidebar-wrapper .sidebar-footer>div:last-child {
    border-right: none;
}

.default-theme.toggled #close-sidebar {
    color: #adadad;
}

.default-theme.toggled #close-sidebar:hover {
    color: #d8d8d8;
}

.default-theme .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.default-theme .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.default-theme .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #525965;
    border-radius: 0;
}

.default-theme .mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.default-theme.sidebar-bg .sidebar-wrapper:before {
    background-color: rgba(42, 42, 42, 0.9);
}

.default-theme.sidebar-bg .sidebar-wrapper a:not(.dropdown-item),
.default-theme.sidebar-bg .sidebar-wrapper .sidebar-header,
.default-theme.sidebar-bg .sidebar-wrapper .sidebar-search input,
.default-theme.sidebar-bg .sidebar-wrapper .sidebar-search i {
    color: #c7c7c7;
}

.default-theme.sidebar-bg .sidebar-wrapper a:not(.dropdown-item):hover,
.default-theme.sidebar-bg .sidebar-wrapper .sidebar-menu li.active>a {
    color: #f2f2f2;
}

.default-theme.sidebar-bg .sidebar-wrapper .sidebar-item {
    border-color: #454545;
}

.default-theme.sidebar-bg .sidebar-wrapper .sidebar-search input.search-menu,
.default-theme.sidebar-bg .sidebar-wrapper .sidebar-search .input-group-text {
    background-color: rgba(81, 81, 81, 0.5);
}

.default-theme.sidebar-bg .sidebar-wrapper .sidebar-menu .sidebar-dropdown div {
    background-color: rgba(81, 81, 81, 0.5);
}

.default-theme.sidebar-bg .sidebar-wrapper .sidebar-menu ul li a i {
    background-color: rgba(81, 81, 81, 0.5);
}

.default-theme.sidebar-bg .sidebar-wrapper .sidebar-footer {
    background-color: rgba(56, 56, 56, 0.5);
    -webkit-box-shadow: 0px -1px 5px rgba(29, 29, 29, 0.8);
    box-shadow: 0px -1px 5px rgba(29, 29, 29, 0.8);
    border-top: 1px solid #383838;
}

.sidebar-wrapper {
    width: 280px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -280px;
    z-index: 1050;
    -webkit-transition: left .3s ease, width .3s ease;
    transition: left .3s ease, width .3s ease;
}

.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-wrapper a {
    text-decoration: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.sidebar-wrapper .sidebar-item {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.sidebar-wrapper .sidebar-content {
    height: 100%;
    overflow-y: hidden;
    position: relative;
    overflow-y: scroll;
    overflow-y: overlay;
}

.sidebar-wrapper .sidebar-content.desktop {
    overflow-y: hidden;
}

/*.sidebar-wrapper .sidebar-content:hover {

    overflow-y: auto;
}*/

.sidebar-wrapper .badge {
    border-radius: 0;
}

.sidebar-bg .sidebar-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sidebar-bg .sidebar-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.sidebar-wrapper .sidebar-brand {
    padding: 1rem 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 55px;
}

.sidebar-wrapper .sidebar-brand>a {
    text-transform: uppercase;
    font-weight: bold;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sidebar-wrapper .sidebar-header {
    padding: 20px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
    width: 60px;
    padding: 2px;
    margin-right: 15px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-info>span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
    font-size: 11px;
    margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
    font-size: 8px;
    margin-right: 4px;
    color: #5cb85c;
}

.sidebar-wrapper .sidebar-search>div {
    padding: 1rem 1.2rem;
}

.sidebar-wrapper .sidebar-search input {
    border-radius: 0;
}

.sidebar-wrapper .sidebar-search .input-group {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.sidebar-wrapper .sidebar-search .input-group-append .input-group-text {
    border-radius: 0;
    border-left: 0;
}

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 5px 30px 1px 20px;
    width: 100%;
}

.sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
    display: inline-block;
    -webkit-animation: swing ease-in-out .5s 1 alternate;
    animation: swing ease-in-out .5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu ul li a i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.sidebar-wrapper .sidebar-menu ul li a .menu-text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
    font-family: "Material Icons";
    font-weight: 900;
    content: "\e5cc";
    display: inline-block;
    font-size: 1.5rem;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    /*top: 5px;*/
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu {
    display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
    padding-left: 25px;
    font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\e836";
    font-family: "Material Icons";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    margin-left: auto;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 15px;
}

.sidebar-wrapper .sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-wrapper .sidebar-footer>div {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    height: 35px;
    line-height: 35px;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-wrapper .sidebar-footer>div>a {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.sidebar-wrapper .sidebar-footer>div a .notification {
    position: absolute;
    top: 0;
}

.sidebar-wrapper .sidebar-footer>div.pinned-footer {
    display: none;
}

.sidebar-wrapper .sidebar-footer .dropdown-menu {
    bottom: 36px;
    left: 0 !important;
    top: initial !important;
    right: 0;
    -webkit-transform: none !important;
    transform: none !important;
    border-radius: 0;
    font-size: .9rem;
}

.sidebar-wrapper .sidebar-footer .messages .dropdown-item {
    padding: .25rem 1rem;
}

.sidebar-wrapper .sidebar-footer .messages .messages-header {
    padding: 0 1rem;
}

.sidebar-wrapper .sidebar-footer .messages .message-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-wrapper .sidebar-footer .messages .message-content .pic {
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-footer .messages .message-content .pic img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.sidebar-wrapper .sidebar-footer .messages .message-content .content {
    line-height: 1.6;
    padding-left: 5px;
    width: calc(100% - 40px);
}

.sidebar-wrapper .sidebar-footer .messages .message-content .content .message-title {
    font-size: 13px;
}

.sidebar-wrapper .sidebar-footer .messages .message-content .content .message-detail {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-wrapper .sidebar-footer .notifications .dropdown-item {
    padding: .25rem 1rem;
}

.sidebar-wrapper .sidebar-footer .notifications .notifications-header {
    padding: 0 1rem;
}

.sidebar-wrapper .sidebar-footer .notifications .notification-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-wrapper .sidebar-footer .notifications .notification-content .icon {
    width: 40px;
    height: 40px;
}

.sidebar-wrapper .sidebar-footer .notifications .notification-content .icon i {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.sidebar-wrapper .sidebar-footer .notifications .notification-content .content {
    line-height: 1.6;
    padding-left: 5px;
    width: calc(100% - 40px);
}

.sidebar-wrapper .sidebar-footer .notifications .notification-content .content .notification-time {
    font-size: .7rem;
    color: #828282;
}

.sidebar-wrapper .sidebar-footer .notifications .notification-content .content .notification-detail {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-wrapper .sidebar-footer .badge-sonar {
    display: inline-block;
    background: #d86703;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
}

.sidebar-wrapper .sidebar-footer .badge-sonar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #d86703;
    opacity: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -webkit-animation: sonar 1.5s infinite;
    animation: sonar 1.5s infinite;
}

/*----------------page-wrapper----------------*/

.page-wrapper {
    height: 100vh;
}

.page-wrapper .theme {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 2px;
    background-size: cover;
}

.page-wrapper .theme.selected {
    border: 2px solid #00c7ff;
}

.page-wrapper .theme.default-theme {
    background: #1d1d1d;
}

.page-wrapper .theme.chiller-theme {
    background: #374140;
}

.page-wrapper .theme.legacy-theme {
    background: #2e333c;
}

.page-wrapper .theme.ice-theme {
    background: #3a4d56;
}

.page-wrapper .theme.cool-theme {
    background: #46454c;
}

.page-wrapper .theme.light-theme {
    background: #ececec;
}

.page-wrapper .page-content {
    display: inline-block;
    width: 100%;
    -webkit-transition: padding-left .3s ease;
    transition: padding-left .3s ease;
    /*overflow-x: hidden;*/
}

.page-wrapper .page-content .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1049;
    background: #000;
    opacity: .5;
    display: none;
}

.page-wrapper.toggled .page-content .overlay {
    display: block;
}

#nav-header {
    /*position: fixed;*/
    background: #ffffff;
    width: 100%;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.page-wrapper.toggled .sidebar-wrapper {
    left: 0px
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper {
    width: 80px;
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
    padding: 10px;
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .user-pic {
    margin: 0 auto;
    width: 50px;
    float: none;
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .user-pic img {
    margin: auto;
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-search input,
.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .user-info,
.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-menu .header-menu,
.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-menu .sidebar-submenu,
.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-menu ul>li>a>span,
.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-menu ul>li>a::after,
.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-footer>div:not(.pinned-footer) {
    display: none !important;
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-search .input-group-text {
    height: 35px;
}

.page-wrapper.pinned:not(.sidebar-hovered) .sidebar-wrapper .sidebar-footer>div.pinned-footer {
    display: block;
}

.page-wrapper .mCSB_scrollTools {
    width: 6px;
}

.page-wrapper .mCSB_inside>.mCSB_container {
    margin-right: 0px;
}

/*----------sidebar background images --------------*/

.sidebar-bg.bg1 .sidebar-wrapper {
    background-image: url(../img/bg1.jpg);
}

.sidebar-bg.bg2 .sidebar-wrapper {
    background-image: url(../img/bg2.jpg);
}

.sidebar-bg.bg3 .sidebar-wrapper {
    background-image: url(../img/bg3.jpg);
}

.sidebar-bg.bg4 .sidebar-wrapper {
    background-image: url(../img/bg4.jpg);
}

[data-bg="bg1"] {
    background-image: url(../img/bg1.jpg);
}

[data-bg="bg2"] {
    background-image: url(../img/bg2.jpg);
}

[data-bg="bg3"] {
    background-image: url(../img/bg3.jpg);
}

[data-bg="bg4"] {
    background-image: url(../img/bg4.jpg);
}

/*---- border-radius ------*/

.border-radius-on .sidebar-header .user-pic {
    border-radius: 12px;
}

.border-radius-on .badge {
    border-radius: 8px;
}

.border-radius-on .sidebar-menu ul li i {
    border-radius: 4px;
}

.border-radius-on .sidebar-footer .dropdown-menu {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.border-radius-on .sidebar-footer .dropdown-menu .notification-content i,
.border-radius-on .sidebar-footer .dropdown-menu .message-content .pic {
    border-radius: 4px;
}

.border-radius-on .sidebar-search input {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.border-radius-on .sidebar-search .input-group-append .input-group-text {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

main.page {
    background-image: url(../img/backend_user.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(../img/backend_user.jpg);
}

main.page.login-page {
    background: linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .6)), url(../img/backend_user.jpg);
}

.img-col img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.bg-brand {
    background-color: #244a6d;
}

.border-brand {
    border-color: #244a6d;
    border-width: 4px;
}

.border-brand-2{
    border-color: #52a9fa;
    border-width: 4px;
}


.text-underline {
    text-decoration: underline;
}

.text-brand {
    color: #244a6d;
}
.text-brand-2 {
    color: #52a9fa;
}

.bg-dark-brand {
    background-color: #254C70 !important;
}

.custom-control.image-checkbox {
    position: relative;
    padding: 0;
    /*width: 200px;*/
    display: inline-block;
}



.custom-control.image-checkbox label {
    transition: all .3s ease;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.custom-control.image-checkbox label:hover,
.custom-control.image-checkbox .custom-control-input:checked~.custom-control-label {
    padding: .2rem;
    border-radius: 4px;
    margin-top: .4rem;
}

.custom-control.image-checkbox label:before {
    border-color: #007bff;
    background-color: #007bff;
}

.custom-control.image-checkbox label:after,
.custom-control.image-checkbox label:before {
    transition: opacity .3s ease;
    opacity: 0;
    left: .25rem;
}

.custom-control.image-checkbox label:focus,
.custom-control.image-checkbox label:hover {
    opacity: .8;
}

.custom-control.image-checkbox label img {
    transition: all .3s ease;
    border-radius: 2.5px;
    max-height: 80px;
}

.custom-control.image-checkbox label:hover img,
.custom-control.image-checkbox .custom-control-input:checked~label img {
    border: 3px solid #007bff;
    border-radius: 4px;
}

/* IMAGE RAMO */

.custom-control.image-ramo-checkbox {
    position: relative;
    padding: 0;
    /*height: 40px;*/
    /*width: 200px;*/
    display: inline-block;
}



.custom-control.image-ramo-checkbox label {
    transition: all .3s ease;
    cursor: pointer;
    padding: 1rem;
}

.custom-control.image-ramo-checkbox label:hover,
.custom-control.image-ramo-checkbox .custom-control-input:checked~.custom-control-label {
    border-radius: 4px;
}

.custom-control.image-ramo-checkbox label:before {
    border-color: #007bff;
    background-color: #007bff;
}

.custom-control.image-ramo-checkbox label:after,
.custom-control.image-ramo-checkbox label:before {
    transition: opacity .3s ease;
    opacity: 0;
    left: .25rem;
}

.custom-control.image-ramo-checkbox label:focus,
.custom-control.image-ramo-checkbox label:hover,
.custom-control.image-ramo-checkbox .custom-control-input:checked~.custom-control-label {
    opacity: .8;
    border-radius: 4px;
    border: 3px solid #007bff;
    padding: 5px;
    margin: 10px;
}

.custom-control.image-ramo-checkbox label img {
    transition: all .3s ease;
    border-radius: 2.5px;
    height: 40px;
}

/*- FIN DE IMAGEN RAMO */

.custom-control.icon-checkbox {
    position: relative;
    padding-left: 0;
    display: inline-block;
    margin: 5px 7px;
    min-width: 100px;
}

.custom-control.icon-checkbox label {
    cursor: pointer;
    padding: 5px 7px 5px 5px;
}

.custom-control.icon-checkbox label:before {
    border-color: #007bff;
    background-color: #007bff;
    border-color: transparent;
    background-color: transparent;
}

.custom-control.icon-checkbox label:after,
.custom-control.icon-checkbox label:before {
    transition: opacity .3s ease;
    opacity: 0;
}

.custom-control.icon-checkbox label:focus,
.custom-control.icon-checkbox label:hover {
    opacity: .8;
}

.custom-control.icon-checkbox .custom-control-input:checked~.custom-control-label:after,
.custom-control.icon-checkbox .custom-control-input:checked~.custom-control-label:before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: transparent;
    top: 0;
    left: 0;
    border-width: 3px;
}

.custom-control.icon-checkbox .custom-control-input:checked~.custom-control-label:after {
    width: 0;
}

.custom-control.icon-checkbox label span,
.custom-control.icon-checkbox label i {
    font-size: 2rem;
    vertical-align: middle;
}

.custom-control.icon-checkbox label img {
    max-height: 5rem;
}

.custom-control.icon-checkbox label:hover img {
    height: 6rem;
}

.custom-file-label.material-icons {
    font-size: 18px;
    font-family: 'OpenSans';
}


.custom-control-label:before,
.custom-file-label,
.custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.custom-file-label,
.custom-file-label:after {
    position: absolute;
    top: 0;
    right: 0;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #999999;
}

.custom-file-label {
    background-color: #fff;
    border: 1px solid #999999;
    border-radius: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-file-label:after {
    font-family: 'Material Icons';
    height: calc(1.5em + .75rem + 2px);
    content: attr(data-btn-text);
    font-weight: bold;
    border-radius: 0;
    color: #244a6d;
    background-color: #ffffff;
    border: 4px solid #244a6d;
    line-height: 1.1;
    margin-top: -1px;
}

.custom-file-label.material-icons[data-btn-text="poliza"]:after {
    content: '\e873';
}

.custom-file-label.material-icons[data-btn-text="dni1"]:after {
    content: '\e8aa';
}

.custom-file-label.material-icons[data-btn-text="dni2"]:after {
    content: '\e911';
}

.custom-file-label.material-icons[data-btn-text="cif"]:after {
    content: '\e8f9';
}

.custom-file-label.material-icons[data-btn-text="actacif"]:after {
    content: '\e85d';
}

.custom-file-label.material-icons[data-btn-text="lopd"]:after {
    content: '\e8e8';
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #244a6d transparent transparent transparent;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    height: 0;
    left: 50%;
    margin-left: 0px;
    margin-top: -10px;
    position: absolute;
    top: 70%;
    width: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #244a6d transparent;
    border-width: 0 10px 10px 10px;
}


.select2-container--default .select2-selection--single {
   background-color: #fff !important;
    background-image: none !important;
    border: 1px solid #999999!important;
    border-radius: 0px !important;
    height: auto !important;
    min-height: 40px !important;
    padding: .0rem .75rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    overflow: initial !important;
    text-overflow: initial !important;
    white-space: initial !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 50px;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #244a6d;
    border-radius: 0;
    padding: 10px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-search--dropdown {
    display: block;
    padding: 0;
    margin-bottom: 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #414da7;
    color: #244a6d !important;
    background-color: white;
    border: 1px solid #244a6d;
    border-radius: 0;
    text-transform: uppercase;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef!important;
    cursor: default;
}

.select2-results__options::-webkit-scrollbar,
.page-wrapper *::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

.select2-results__options::-webkit-scrollbar-thumb,
.page-wrapper *::-webkit-scrollbar-thumb {
    background: #244a6d;
    border-radius: 13px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover,
.page-wrapper *::-webkit-scrollbar-thumb:hover {
    background: #244a6d;
}

.select2-results__options::-webkit-scrollbar-track,
.page-wrapper *::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 0px;
}

.image-preview-input {
    position: relative;
    overflow: hidden;
    margin: 0px;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.image-preview-input input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.image-preview-input-title {
    margin-left: 2px;
}

.file {
    visibility: hidden;
    position: absolute;
}

.w_200 {
    width: 100px !important;
}

.text-truncate-2 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: justify;
}

.text-truncate-3 {
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: justify;
}

.text-truncate-4 {
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: justify;
}

.text-truncate-table:not(th) {
    max-width: 200px;
    min-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*****************
WIZARD FORM
**************/

.wizard-col {
    transition: all .3s ease;
    display: none;
}

.wizard-col label:not(.custom-control-label):not(.custom-file-label) {
    display: block;
    text-align: center;
    font-size: 2rem;
}

.wizard-col .form-group>label:after {
    position: relative;
    /* top: 3px; */
    right: -15px;
    width: 35px;
    display: inline-block;
    padding-left: 5px;
    z-index: 3;
    height: calc(1em + .75rem);
    border-left: inherit;
    border-radius: 50pc;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    font-family: 'Material Icons';
    font-size: 1.5rem;
    content: "arrow_forward_ios";
    text-align: center;
    line-height: 1.5;
}

.dataTables_scrollBody::-webkit-scrollbar,
.sidebar-content::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb,
.sidebar-content::-webkit-scrollbar-thumb {
    background: #244a6d;
    border-radius: 13px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb:hover,
.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #244a6d;
}

.dataTables_scrollBody::-webkit-scrollbar-track,
.sidebar-content::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 0px;
}

.dataTables tr[data-estado="1"]{
   background-color: red;
}

.page-item .page-link {
    font-weight: 800;
    z-index: 3;
    color: #244a6d;
    background-color: #ffffff;
    border-color: #ffffff;
    border-radius: 0px !important;
}

.page-item.active .page-link,
.page-link:hover {
    color: #244a6d;
    background-color: #ffffff;
    border-color: #244a6d;
    border-width: 4px;
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}


/**************
EDITAR POLIZA
**************/

#editar_poliza_div label, .admin label{
    opacity: 0.6;
    font-weight: initial;
    text-transform: none;
}

#editar_poliza_div .form-control, .admin .form-control{
    color: #000000;
    font-weight: bold;
}


table {
    border: 2px solid #244a6d;
    margin-top: 1rem;
}

.table-sm td,
.table-sm th {
    padding: .3rem;
    font-size: 90%;
}
.caption-top{
    padding-top: 0;
    padding-bottom: 0;
    color: #244a6d;
    text-align: left;
    caption-side: top;
    font-weight: 700;
    text-transform: uppercase;
}

.clean-block {
    padding-top: 1rem;
}

.clean-block.dark {
    background-color: rgb(246 246 246 / 70%);
}

.clean-block .block-heading {
   text-align: left;
    padding-top: 0;
    margin-bottom: 1rem;
}

.block-heading h2 {
    text-transform: uppercase;
    font-weight: 800;
    font-style: initial;
    position: relative;
}

.block-heading h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 8px;
    width: 66px;
    border-bottom: 8px solid #52a9fa;
}

.clean-block .block-heading p {
    text-align: left;
}

.clean-block .block-content {
    padding: 20px;
}

.form-control {
    color: #999999;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    border-radius: 0;
    border-color: #999999;
}

.form-control:focus {
    box-shadow: 0 0 0 1px #52a9fa;
}

.div-truncate {
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

ul.ul-arrows {
    list-style: none;
}

ul.ul-arrows li {
    white-space: nowrap;
}

ul.ul-arrows li:before {
    content: "\00BB \0020";
}

.tooltip-inner {
    /*background-color: #999999;*/
    border-radius: 0;
    border: 2px solid #000000;
    padding: 3px 8px;
    color: #ffffff;
}


.form-wizard .wizard-fieldset {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.form-wizard .form-control:focus {
    box-shadow: none;
}

.form-wizard .form-wizard-steps {
    /*margin: 30px 0;
    display: flex;*/
    display: none;
}

.form-wizard .form-wizard-steps li {
    width: 25%;
    position: relative;
}

.form-wizard .form-wizard-steps li::after {
    background-color: #ffffff;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid #52a9fa;
    border-top: 1px solid #52a9fa;
}

.form-wizard .form-wizard-steps li span {
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 1;
    font-weight: bold;
    color: #999999;
    border: 1px solid #52a9fa;
}

.form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
}

.form-wizard .form-wizard-steps li.active span,
.form-wizard .form-wizard-steps li.activated span {
    background-color: #52a9fa;
    color: #ffffff;
}

.form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.activated::after {
    background-color: #52a9fa;
    left: 50%;
    width: 50%;
    border-color: #52a9fa;
}

.form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
    border-color: #52a9fa;
}

.form-wizard .form-wizard-steps li:last-child::after {
    left: 0;
}
.wizard-fieldset h3{
    font-style: initial;
    display: inline-block;
    border-bottom: 3px solid #244a6d;
        color: #244a6d;
    padding-bottom: 5px;
    margin-bottom: 0;
    text-decoration: none;
}

.invalid{
    position: relative;
    color: red;
    border-bottom: 2px solid red;
    display: block;
}

.invalid:after{
    position: absolute;
    right: 0;
    top: -1rem;
    margin-left: 1rem; 
    color: red;
    font-family: 'Material Icons';
    font-size: 2rem;
    content: "\e001";
}
.custom-file-label.material-icons.invalid{
    position: absolute;top: 0;
}
.custom-file-label.material-icons.invalid:after{
    top: 0;
    margin-left: 1rem;
    color: red;
    font-family: 'Material Icons';
    font-size: 1.1rem;
    border: 4px solid red;

}

/****************/
/*  TABS        */
/****************/
.nav-tabs {
    border-bottom: 2px solid #244a6d;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #244a6d;
    border-color: #244a6d #244a6d #fff;
    border-radius: 0;
    border-width: 2px;
}


/* Absolute Center Spinner */
.loading {
  position: relative;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
}

@media screen and (min-width: 768px) {
    .page-wrapper .page-content {
        padding-left: 280px;
    }

    .page-wrapper.toggled .page-content {
        padding-left: 0px;
    }

    .sidebar-wrapper {
        left: 0px;
    }

    .page-wrapper.toggled .sidebar-wrapper {
        left: -280px
    }

    .page-wrapper.pinned .page-content {
        padding-left: 80px;
    }

    .page-wrapper.toggled .page-content .overlay,
    .page-wrapper .page-content .overlay {
        display: none;
    }

    .img-col {
        display: none;
    }

    .toggled .img-col {
        display: block;
    }

    .select-aseguradora{
        flex-wrap: wrap!important;
        max-height: 300px;
        overflow-y: auto;
        margin-left: -5px;
        margin-right: -5px;
    }
    .clean-block .block-content {
        padding: 40px;
    }
}

@media screen and (min-width: 1400px) {
    .img-col {
        display: block;
    }
}