/* GENERAL
--------------------------------------------*/

.clear {
    width               :   100%;
    clear               :   both;
}

.center {
    text-align          :   center;
}

.req {
    border: 1px dashed #FF0000!important;
    background: #ffeaea!important;
}

#error, .error {
    padding: 15px;
    display: block;
    background: #ffeaea;
    border: 1px solid #FF0000;
    color: #FF0000;
    border-radius: 5px;
    margin: 10px 0;
    clear: both;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
}

#error {
    display: none;
}

#success {
    padding: 15px;
    display: none;
    background: #c4ffdf;
    border: 1px solid #00a54d;
    color: #00a54d;
    border-radius: 5px;
    margin: 10px 0;
    clear: both;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
}

.margin5 {
    width               :   100%;
    clear               :   both;
    height              :   5px;
}

.margin10 {
    width               :   100%;
    clear               :   both;
    height              :   10px;
}

.margin15 {
    width               :   100%;
    clear               :   both;
    height              :   15px;
}

.margin20 {
    width               :   100%;
    clear               :   both;
    height              :   20px;
}

.margin25 {
    width               :   100%;
    clear               :   both;
    height              :   25px;
}

.boxes {
    display: inline-block;
    float: left;
    padding: 5px;
}

.full {
    width: 100%;
}

.half {
    width: 50%;
}

.third {
    width: 33.33%;
}

.quarter {
    width: 25%;
}

.threequarters {
    width: 75%;
}

/* Style the input container */
.funnel-wrapper .input-container {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

/* Style the form icons */
.funnel-wrapper .icon {
    padding: 0 10px;
    background: #113245;
    color: #FFF;
    min-width: 50px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    border-radius: 0 5px 5px 0;
    margin-right: -1px;
    font-size: 22px;
}

/* Style the input fields */
.funnel-wrapper .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    height: 50px;
    border: 1px solid #113245;
    border-radius: 5px 0 0 5px;
}

/* Style the form icons */
.funnel-wrapper .input-container.ileft .icon {
    margin-left: -1px;
    margin-right: 0;
    border-radius: 5px 0 0 5px;
}

/* Style the form icons */
.funnel-wrapper .input-container.ileft .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    height: 50px;
    border: 1px solid #113245;
    border-radius: 0 5px 5px 0;
}

.funnel-wrapper .input-field:focus {
    border: 1px solid #000;
}

.funnel-wrapper .input-field[type="button"] {
    border-radius: 10px;
    background: #DC143C;
    color: #FFF;
    border-color: #DC143C;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    font-family: "Carlito Bold2"!important;
}


/* ADD TO FAVS
--------------------------------------------*/

.addfavs {
    cursor: pointer;
    transition: all ease-in 0.3s;
    font-size: 80%;
}

.addfavs.fa-regular {
    color: #CCC;
}

.addfavs.fa-solid {
    color: #47C66E;
}

.tooltips {
    position: relative; /* making the .tooltip span a container for the tooltip text */
    border-bottom: none; /* little indicater to indicate it's hoverable */
}   

.tooltips:after {
    content: "";
    position: absolute;
  
    /* position tooltip correctly */
    left: 100%;
    margin-left: -2px;
 
    /* vertically center */
    top: 50%;
    transform: translateY(-50%);
 
    /* the arrow */
    border: 10px solid #47C66E;
    border-color: transparent #47C66E transparent transparent;
  
    display: block;
}

.tooltips:before {
    content: attr(data-text); /* here's the magic */
    position: absolute;
  
    /* vertically center */
    top: 50%;
    transform: translateY(-50%);
  
    /* move to right */
    left: 100%;
    margin-left: 15px; /* and add a small left margin */
  
    /* basic styles */
    min-width: 110px;
    width: auto;
    padding: 3px;
    border-radius: 7px;
    background: #47C66E;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;

    display: block; /* hide by default */
}


/* DASHBOARD
--------------------------------------------*/

.dashboard-link {
    background: #DC143D!important;
    margin-left: 30px;
    width: 100%;
    text-align: center;
}

.dashboard-wrapper {
    width: 100%;
    display: flex;
    padding: 0;
    min-height: 100vh;
    margin-top: -5px;
}

.dashboard-menu {
    width: 25%;
    padding: 35px 0;
    box-sizing: border-box;
    position: relative;
}

.dashboard-menu h2 {
    font-size: 28px;
    margin-bottom: 25px;
    padding-left: 35px;
}

.dashboard-menu .fmenu_wrap {
    position: relative;
    height: 100%;
    width: 100%;
}

.dashboard-menu .fmenu {
    position: fixed;
    width: 25%;
    left: 0;
    background: #FFF;
    z-index: 999;
}

.dashboard-menu .fmenu.bottom {
    position: absolute;
    bottom: 0;
}

.dashboard-menu .menu-item {
    width: 100%;
    padding: 10px 20px 10px 70px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    color: #293F52;
    transition: background 0.3s ease-out;
    border-radius: 0px;
    font-family: "Carlito Bold";
    text-transform: uppercase;
    letter-spacing: 0.11rem;
}

.dashboard-menu .menu-item:hover, 
.dashboard-menu .menu-item.active {
    background: #587084;
    color: #FFF;
}

.dashboard-menu .menu-item.active {
    background: #293F52;
}

.dashboard-menu .menu-item i {
    position: absolute;
    left: 35px;
    top: 50%;
    margin-top: -9px;
    transition: all 0.5s ease-out;
}

.dashboard-content {
    width: 75%;
    padding: 35px;
    box-sizing: border-box;
    background: #F9F9F9;
    -webkit-box-shadow: inset 2px 0px 7px 0px rgba(0,0,0,0.1); 
    box-shadow: inset 2px 0px 7px 0px rgba(0,0,0,0.1);
}

.dashboard-content .section {
    min-height: 80vh;
    display: none;
    position: relative;
    padding-bottom: 30px;
}

.dashboard-content .section .loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dashboard-content .section .loader img {
    position: absolute;
    top: 35%;
    left: 50%;
    margin: 0 0 0 -75px;
    opacity: 0.7;
}

.dashboard-content .section.active {
    display: block;
}

.dashboard-content .section h3 {
    font-size: 24px;
    margin: 0 0 25px 0;
}

.dashboard-content .section .parts {
    padding: 20px;
    margin: 10px;
    min-height: 125px;
    background: #FFF;
    border-radius: 10px;
    box-sizing: border-box;
    display: inline-block;
    float: left;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1); 
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1);
    position: relative;
}

.dashboard-content .section .parts.half {
    width: calc(50% - 20px);
}

.dashboard-content .section .parts.third {
    width: calc(33.33% - 20px)!important;
}

.dashboard-content .section .parts.twothirds {
    width: calc(66.66% - 20px)!important;
}

.dashboard-content .section .parts.full {
    width: calc(100% - 20px);
}

.dashboard-content .section .parts .innerparts {
    display: inline-block;
    float: left;
    padding: 5px;
    width: 100%;
}

.dashboard-content .section .parts .innerparts.count {
    font-size: 90px;
    line-height: 200px;
    font-weight: bold;
    text-align: center;
}

.dashboard-content .section .parts.third {
    width: calc(50% - 10px);
}

.dashboard-content .section .parts.twothirds {
    width: calc(50% - 10px);
}

.dashboard-content .section .parts input, 
.dashboard-content .section .parts select {
    padding: 8px;
    height: 50px;
    width: 100%;
    border: 1px solid #CCC;
    background: #F9F9F9;
    border-radius: 5px;
    margin: 5px;
}

.dashboard-content .buttons {
    background: #DC143D;
    color: #FFF;
    text-align: center;
    width: 100%;
    display: block;
    padding: 15px;
    border-radius: 10px;
    height: 50px;
}

.dashboard-content .section .parts.buts button {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: calc(100% - 40px);
}

.dashboard-content .alerts {
    display: none;
    width: calc(100% - 20px);
    margin: 10px 10px 20px 10px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.dashboard-content .alerts.alert-success {
    border: 2px solid #1a9c54;
    color: #FFF;
    background: #1a9c54;
}


/* RESPONSIVE
--------------------------------------------*/

@media (max-width: 767px) {
    
}