.icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
::selection{
    background-color: #54E0C7;
    color:#fff;
}

.edit-icon::after{
    font-family: "Font Awesome 5 Free"; font-weight: 200; content: " \f044";
}
.icon{
    text-decoration: none;
}

/** Animated Button **/
.bttn {

    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
}
.bttn:hover {
    color: #FFF;
}
.bttn:focus {
    color: #FFF;
}

.filled-out::before {

    content: "\2714";
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    border-radius: 20px;
    color: #54E0C7;
}

.bttn {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    width: 100%;
    background: none;
    border: 3px solid;
    font-weight: bold;
    padding: 7px 0px;
    position: relative;
}
.bttn:before {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    z-index: -2;
}
.bttn:hover:before {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}
.bttn:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.bttn-green {
    color: #4CAF50;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    border-color: #4CAF50!important;
}
.bttn-green:hover:before {
    background-color: #4CAF50;
}
.bttn-green:focus:before {
    background-color: #4CAF50;
}

.bttn-red {
    color: #c0392b;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    border-color: #c0392b!important;
}
.bttn-red:hover:before {
    background-color: #c0392b;
}
.bttn-red:focus:before {
    background-color: #c0392b;
}

.bttn-blue {
    color: #007AFF;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    border-color: #007AFF!important;
}
.bttn-blue:hover:before {
    background-color: #007AFF;
}
.bttn-blue:focus:before {
    background-color: #007AFF;
}

/** Animated Button End **/

/** Loading Spinner for Buttons **/
.submit.w3-disabled > .btn-load {
    display: inline-block !important;
}

.submit > .btn-load {
    display: none;
}

/** Input Styling **/
.inputGroup {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
}
.inputGroup label {
    padding: 12px 30px;
    width: 100%;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
}
.inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}
.inputGroup label:after {
    width: 32px;
    height: 32px;
    content: '';
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
    color: #3C454C;
}
.inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}
.inputGroup input:checked ~ label:after {
    background-color: #54E0C7;
    border-color: #54E0C7;
}
.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.input-error {
    border-color: #e74c3c !important;
}
.file-upload-wrapper.input-error::after {
    border-color: #e74c3c;
    color: #e74c3c;
}
.input-error + label, .input-error::placeholder{
    color: #e74c3c;

}
.q-form input, .q-form select, .q-form textarea {
    background: #f5f7f8;
    color: #000;
    border-bottom-color: #555;
    border-bottom-width: 2px;
    transition: border-color .5s ease;
    border-radius: 0px;
}
.q-form input:focus, .q-form select:focus, .q-form textarea:focus {
    outline: none;
    border-bottom-color: #27ae60;
}

.q-form-outer {
    position: relative;
}
.select-wrapper {
    position: relative;
    width: 100%;
    line-height: 40px;
}

.select-wrapper::before {
    pointer-events: none;
    position: absolute;
    right: 15px;

}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #444;
    border-radius: 0;
    cursor: pointer;
    height: 40px;
    outline: none;
    padding-left: 10px;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    line-height: 40px;
    font-weight: normal;
    border-bottom-width:2px ;
    border-bottom-color: #555;
    font-family: 'Open Sans', Verdana;
}


select::-ms-expand {
    display: none;
}

select:focus::-ms-value {
    background-color: transparent;
}
.open-section{

    background: #283240!important;
    color: #fff;

}
.w3-bottombar.open-section {

    background: inherit;
    background-color: inherit;
    color: inherit;
    border-color: #54E0C7 !important;

}
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
}
.file-upload-wrapper:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f7f8;
    border-bottom-color: #555;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 40px;
    line-height: 40px;
    color: #777;
    padding: 0 0 0 7px;
    font-weight: 300;
    border-bottom: 2px solid;
    border-radius: 0;
    border-bottom-color: #555;
}

.file-upload-wrapper:before {
    content: 'Upload';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #4daf7c;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: 40px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius:0;
}
.file-upload-wrapper:hover:before {
    background: #3d8c63;
}
.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

/** Filter Object Box **/
.filter-outer {
    width: 100%;
    height: 340px;
    overflow-x: scroll;
    position: relative;

}
.filter-inner {
    display:table;
}
.filter-row {
    display:table-row;
}
.filter-object {
    display:table-cell;
}
.filter-box {
    width:180px;
    height:200px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.scroller {
    scrollbar-color: #283240 #405067; /* thumb and track color */
    scrollbar-width: thin;
}
/* width */
.scroller::-webkit-scrollbar {
    width: 7px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
    background: #405067;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
    background: #283240;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
    background: #283240;
}

.filter-box li input[type="checkbox"]{
    display: none;
}
.filter-box li input[type="checkbox"] + label {
    cursor: pointer;
    opacity: 1;
    transition: opacity 1s;
}
.filter-box li input[type="checkbox"]:checked+label {
    border-bottom: 2px solid #54E0C7;
    opacity: 1;

}
.filter-box li input[type="checkbox"]:checked+label::after {
    font-family: "Font Awesome 5 Free"; font-weight: 200; content: " \f14a";
    color: #54E0C7
}
.filter-box li{
    border-bottom-color: #283240;
}


.slidecontainer {
    width: 100%;
    position: relative;
}

.filter-box .filter-slider {

    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #fff;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-top: 40px;
    border: none;

}
.slider-badge{
    position: absolute;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: 20px;
    border-radius: 40px;
}
.filter-arrows{

}
.filter-arrows span{
    opacity: 0.5;
    position: fixed;
    height: 0px;
    font-size: 60px;
    transition: opacity 1s;
    cursor: pointer;
    margin-top: 130px;
    z-index: 9999;
}
.filter-arrows span:hover{
    opacity: 1;
}
.arrow-right{
    right: 32px;
}

.filter-box .filter-slider:hover {
    opacity: 0.7;
}

.filter-box .filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #54E0C7;
    cursor: pointer;
    border: none;

}

.filter-box .filter-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #54E0C7;
    cursor: pointer;
    border: none;
}
.hide-filter{
    cursor: pointer;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {

}


/** SLIDER **/
.slider {
    position: relative;
    overflow: hidden;
    margin: 20px auto 0 auto;
    
}
.slider-content > span{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider ul {
    position: relative;
    margin: 0;
    padding: 0;
    height: 200px;
    list-style: none;
}

.slider ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 300px;
    background: #ccc;
    text-align: center;
    line-height: 300px;
}

a.control_prev, a.control_next {
    position: absolute;
    top: 40%;
    z-index: 999;
    display: block;
    padding: 4% 3%;
    width: auto;
    height: auto;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
}

a.control_prev {
    border-radius: 0 2px 2px 0;
}

a.control_next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

/** DETAILS STECKBRIEF **/
.details-outer {
    position: absolute;
    top: -68px;
    z-index: 9999;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
    min-height:calc(100vh - 43px);
    color: #000;

}
.details-close-btn{
    cursor: pointer;
}
.details-inner{
    background: #fff;
    padding-bottom: 40px;
}

/** FEEDBACK LETTER **/
.feedback-letter td, .feedback-letter th{
    vertical-align: middle;
    text-align: center;
}

/** LOADING BACKGROUND **/
#filter-loading{
    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.filter-loading-background{
    background: black;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    opacity: .3;
}
.filter-loading-content{
    top: 50%;
    position: absolute;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    text-align: center;
}
.filter-loading-content span{
    padding: 9px;

}