*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root{
    --green: #46ceac;
    --green_h: #35ba9b;
    --green_l: #61ddbc;

    --blue: #4fc0e8;
    --blue_h: #3aadd9;
    --blue_l: #66d4f1;

    --yellow: #fdcd56;
    --yellow_h: #f5b945;
    --yellow_l: #fbd277;

    --red: #eb5463;
    --red_h: #d94452;
    --red_l: #f76c82;

    --selkBlackLight: #303337;
    --selkBlackDark: #212121;
    --selkGray: #878d8d;

    --selkRed: #e74c3c;
    --selkBlue: #3498db;
    --selkGreen: #2ecc71;
    --selkYellow: #f1c40f;
    --selkOrange: #e67e22;
    --selkTurquoise: #1abc9c;
    --selkPurple: #9b59b6;
    --selkAsphalt: #34495e;

    --selkLightRed: #ff4d4d;
    --selkLightBlue: #4bcffa;
    --selkLightGreen: #0be881;
    --selkLightYellow: #ffdd59;
    --selkLightOrange: #ffc048;
    --selkLightPurple: #7d5fff;


    --selkDarkRed: #c0392b;
    --selkDarkBlue: #2980b9;
    --selkDarkGreen: #27ae60;
    --selkDarkYellow: #f39c12;
    --selkDarkOrange: #d35400;
    --selkDarkTurquoise: #16a085;
    --selkDarkPurple: #8e44ad;
    --selkDarkAsphalt: #2c3e50;

    /*config*/
    --selkBgLight: #ecf1f3;
    --selkBgGray: #95afc0;
    --selkBgDark: #343a40;
    --selkMarginTop: 56px;
    --selkEaseTime: 0.25s;
}

a{
    text-decoration: none;
    font-weight: 700;
    color: var(--blue);
}

a:hover{
    text-decoration: underline;
    color: var(--blue_h);
}


img{
    max-width: 100%;
}

img a{
    border: none;
}

embed,
video,
iframe,
iframe[style]{
    max-width: 100%;
    height: auto;
}


/*
CONTAINERS
*/
.container{
    max-width: 1200px;
    margin: 0 auto;
}

.embed-container{
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.embed-container embed,
.embed-container video,
.embed-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
BOXSTYLES
*/
.radius{
    --radius: 4px;
    border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
}

.rounded{
    --radius: 50%;
    border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
}

.transition{
    --seconds: 0.2s;
    transition-duration: var(--seconds);
    -moz-transition-duration: var(--seconds);
    -webkit-transition-duration: var(--seconds);
    cursor: pointer;
}

/*
TRIGGERS
*/
.trigger{
    margin-bottom: 12px;

    color: #fff;
    font-size: 0.875em;
    background: #888;
    text-shadow: 1px 1px rgba(0,0,0,0.3);
    padding: 12px;
    border: 1px solid #666;
}

.trigger-success{
    background: var(--green);
    border-color: var(--green_h);
}

.trigger-success-out{
    color: var(--green);
    border-color: var(--green);
    background: none;
    text-shadow: none;
}

.trigger-info{
    background: var(--blue);
    border-color: var(--blue_h);
}

.trigger-info-out{
    color: var(--blue);
    border-color: var(--blue);
    background: none;
    text-shadow: none;
}

.trigger-alert{
    background: var(--yellow);
    border-color: var(--yellow_h);
}

.trigger-alert-out{
    color: var(--yellow);
    border-color: var(--yellow);
    background: none;
    text-shadow: none;
}

.trigger-error{
    background: var(--red);
    border-color: var(--red_h);
}

.trigger-error-out{
    color: var(--red);
    border-color: var(--red);
    background: none;
    text-shadow: none;
}
/*
BUTTON
*/
.btn{
    display: inline-block;
    padding: 10px 20px;
    background: #888;
    border: none;
    cursor: pointer;

    font-size: 1em;
    font-weight: normal;
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,0.3);
}

.btn:hover{
    color: #fff;
    text-decoration: none;
    background: #666;
}

.btn-small{
    font-size: 0.875em;
}

.btn-big{
    font-size: 1.275em;
}

.btn-green{
    background: var(--green);
}

.btn-green:hover{
    background: var(--green_h);
}

.btn-green-out{
    color: var(--green);
    border: 1px solid var(--green);
    background: none;
    text-shadow: none;
}

.btn-green-out:hover{
    color: var(--green_h);
    border: 1px solid var(--green_h);
    background: none;
    text-shadow: none;
}

.btn-blue{
    background: var(--blue);
}

.btn-blue:hover{
    background: var(--blue_h);
}

.btn-blue-out{
    color: var(--blue);
    border: 1px solid var(--blue);
    background: none;
    text-shadow: none;
}

.btn-blue-out:hover{
    color: var(--blue_h);
    border: 1px solid var(--blue_h);
    background: none;
    text-shadow: none;
}

.btn-yellow{
    background: var(--yellow);
}

.btn-yellow:hover{
    background: var(--yellow_h);
}

.btn-yellow-out{
    color: var(--yellow);
    border: 1px solid var(--yellow);
    background: none;
    text-shadow: none;
}

.btn-yellow-out:hover{
    color: var(--yellow_h);
    border: 1px solid var(--yellow_h);
    background: none;
    text-shadow: none;
}

.btn-red{
    background: var(--red);
}

.btn-red:hover{
    background: var(--red_h);
}

.btn-red-out{
    color: var(--red);
    border: 1px solid var(--red);
    background: none;
    text-shadow: none;
}

.btn-red-out:hover{
    color: var(--red_h);
    border: 1px solid var(--red_h);
    background: none;
    text-shadow: none;
}

/*
FLEXBOX
*/
.flex{
    display: flex;
    flex-wrap: wrap;
}

.flex .flex-1{
    flex-basis: 100%;
}

.flex .flex-2{
    flex-basis: calc(50% - 40px);
    margin: 20px;
}

.flex .flex-3{
    flex-basis: calc(33.33% - 30px);
    margin: 15px;
}

.flex .flex-4{
    flex-basis: calc(25% - 20px);
    margin: 10px;
}

/*TEXT*/
.text { color: var(--selkGray); }

.selkBlackLight { background-color: var(--selkBlackLight); }
.selkBlackDark { background-color: var(--selkBlackDark); }

/*AUTOCOMPLETE*/
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
}
.autocomplete-items {
  position: absolute;
  max-height: 300px;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.autocomplete-items::-webkit-scrollbar { width: 6px;}
.autocomplete-items::-webkit-scrollbar-track { background: rgba(55,55,55,0.1);}
.autocomplete-items::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1);}
.autocomplete-items:hover::-webkit-scrollbar-track { background: rgba(55,55,55,0.2);}
.autocomplete-items:hover::-webkit-scrollbar-thumb { background: rgba(0,20,80,0.3);}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

.btn-wa-float { position: fixed;display: flex; left: 10px;bottom: 10px; 
    width: 40px; height: 40px;border-radius: 50px;
    font-size: 24px; background-color: #34af23;color: #fff; box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.2);
    transition: 0.3s transform;-webkit-transition:0.3s transform;
    -moz-transition:0.3s transform; -ms-transition:0.3s transform;
    justify-content: center;align-items: center;}
.btn-wa-float:hover { color: #fff; text-decoration: none;transform: scale(1.15);}