/* Custom properties/variables  */
:root {
  --main-white: #ffffff;
  --main-green: #002f34;
  --main-green-hover: #00353b;
  --main-blue: #3e79ff;
  --main-red: #aa133d;
  --main-gray: #dbe1e2;
  --main-dark-gray: #888a8d;
  --main-orange: #ff5636;
}

/* Fonts */


@font-face {
    font-display: swap;
    font-family: "Geomanist";
    font-style: normal;
    font-weight: normal;
    src: local("Geomanist"), url(../fonts/geomanist-regular-webfont.c77609a0d.woff2) format("woff2"), url(../fonts/geomanist-regular-webfont.f55ce2de1.woff) format("woff");
}
@font-face {
    font-display: swap;
    font-family: "Geomanist";
    font-style: normal;
    font-weight: 700;
    src: local("Geomanist"), url(../fonts/geomanist-medium-webfont.29927b8df.woff2) format("woff2"), url(../fonts/geomanist-medium-webfont.2a1ec21e5.woff) format("woff");
}
@font-face {
    font-display: swap;
    font-family: "Geomanist";
    font-style: normal;
    font-weight: 500;
    src: local("Geomanist"), url(../fonts/geomanist-book-webfont.d5d4a23a5.woff2) format("woff2"), url(../fonts/geomanist-book-webfont.dd5857a8e.woff) format("woff");
}
* {
    box-sizing: border-box;
    font-family: Geomanist, Arial, sans-serif;
}
textarea:focus, input:focus, button:focus{
    outline: none;
}
*:focus {
    outline: none;
}


/* General */

body{
	background: #ffffff;
	color: var(--main-green);
}
a{
	color: var(--main-green);
}

header{
	background: var(--main-green);
	padding: 10px 0;
    padding: 10px 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
}
h1, .h1{
	font-size: 30px;
	font-weight: 700;
}


.bg-menu{
    background: #f1f4f5;
    padding: 20px 20px 0;
}
.content-wrapper{
    padding: 50px 15px;
}
.max-article{
    max-width: 880px;
    width: 100%;
}
.relative{
    position: relative;
}


/*
    Header
==================*/

.wrapper-logo{
    width: 350px;
    text-align: center;
    display: inline-block;
}
.wrapper-search{
    display: inline-block;
    margin-left: 50px;
    width: 50%;
}
.wrapper-flags{
    display: inline-block;
    text-align: right;
}
.input-select-flags {
  background-color: #f1f4f5;
  border-radius: 4px;
  width: auto;
  height: 50px;
  color: #002F34;
  padding: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer;
}
.arrow-select {
  height: 24px;
  width: 24px;
  color: #002F34;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}
.arrow-select-left {
  height: 24px;
  width: 24px;
  color: #002F34;
  padding: 0;
  border: none;
  position: absolute;
  top: 2px;
  left: 8px;
}
.css-1bjsvqt {
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 200;
  min-width: 100%;
}
.css-1g9b9fl {
  overflow: auto;
  background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  max-height: 300px;
}
.css-1bywj74 {
  list-style: none;
  margin: 0px;
  padding: 5px 5px 5px 15px;
  background: rgb(255, 255, 255) none repeat scroll 0% 0%;
}
.css-1bywj74:hover{
    color: var(--main-white);
    background: var(--main-green);
}
.css-1oi36r6 {
  display: flex;
  -moz-box-align: center;
  align-items: center;
}
.flag{
    margin-right: 10px;
}
.search-field,
div.asl_w{
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px !important;
    border-radius: 4px;
    height: 30px;
    width: 100%;
}
.list-results li{
    margin-top: 20px;
}
.list-results li a{
    display: block;
}
.form-search{
    width: 250px;
}
.search-submit{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: 0;
    padding: 0 10px;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: rgba(0,0,0,0.04);
}
#ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input{
    font-size: 14px;
}


/*
        Modules
=============================*/


.copy{
    position: absolute;
    right: 10px;
    top: 10px;
    border: 0;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}
.copy:hover{
    background: #f1f1f1;
}
.copied-tag{
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 11px;
  background: var(--main-green);
  color: var(--main-white);
  padding: 3px;
  display: none;
}
.main-menu{
    background: var(--main-white);
    padding: 15px;
    border-radius: 4px;
}
.main-menu li a,
.menu-category{
    border-bottom: 1px solid var(--main-gray);
    padding: 10px 0;
    display: block;
    cursor: pointer;
}
.main-menu li a:hover,
.menu-category:hover{
    color: var(--main-green);
    text-decoration: underline;
}
.submenu {
    border-bottom: 1px solid var(--main-gray);
    padding: 10px 0;
    display: none;
}
.submenu a{
   padding: 5px 0 !important;
   border: 0 !important;
}
.arrow-select{
    height: 24px;
    width: 24px;
    color: #002F34;
    padding: 0;
    border: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
}
.open .arrow-select{
    transform: rotate(180deg);
    top: 10px;
}

.arrow-right-menu{
    height: 24px;
    width: 24px;
    color: #002F34;
    padding: 0;
    border: none;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
    transform: rotate(-90deg);
}

.menu-category{
    position: relative;
}
.cat-icon{
    position: absolute;
    left: 5px;
    top: 12px;
    width: 20px;
    height: 20px;
}
.main-menu li:last-child a{
    border-bottom: none;
    padding-bottom: 0;
}
.btn-changelog{
  display: block;
  text-align: left;
  padding: 10px 10px 10px 40px;
  margin-left: 10px;
  border: 0; 
}
.btn-changelog:hover{
    color: inherit;
}
.btn-radio{
    text-align: left;
    position: relative;
    padding-left: 40px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.btn-radio input[type="radio"]{
  display: none;
}
.btn-radio svg{
    position: absolute;
    left: 15px;
    top: 13px;
}
.input-text{
    background: #ebecef;
    padding: 10px 15px;
    border: 0;
    border-radius: 4px;
    width: 100%;
}
textarea.input-text{
    height: 180px;
}




/*

    FONTS AND STUFF
=============================*/
.max-article a{
    color: var(--main-blue);
    text-decoration: underline;
}
.font-bold{
    font-weight: bold;
}
.tag{
    border-radius: 4px;
    font-size: 12px;
}
.alert{
    padding: 2px 20px;
    min-height: 10px;
}
.link-unstyled{
    text-decoration: none !important;
}
.link-unstyled:hover{
    text-decoration: underline !important;
}

/* 
    COLORS AND BUTTONS
-----------------------------*/
.overview-box{
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.text-black{
    color: #0b0b0b;
}
.text-gray{
    color: var(--main-dark-gray);
}
.text-green{
    color: #00a49f;
}
.text-red{
    color: #ff5636;
}
.text-blue{

}
.link{
    color: #5386fa;
    font-weight: bold;
}
.link:hover{
    text-decoration: underline;
}
.btn{
    border: 1px solid #000;
    border-radius: 4px;
    padding: 4px 20px;
}
.tag{
    padding: 2px 5px;
}
.likes .btn{
    margin-top: -10px;
    background: var(--main-white);
}
.input-textarea{
    background: var(--main-gray);
    border: 0;
    padding: 10px;
    display: block;
    width: 100%;
}

.bar-green{
    width: 100%;
    background: #00a49f;
    height: 10px;
    border-radius: 5px;
}
.bar-red{
    width: 100%;
    background: #ff5636;
    height: 10px;
    border-radius: 5px;
}
.bg-tag-blue{
    background:#4c7ce6;
    color: #FFFFFF;
}
.bg-tag-green{
    background:#00a49f;
    color: #FFFFFF;
}
.bg-tag-red{
    background:#ff0000;
    color: #FFFFFF;
}
.bg-tag-orange{
    background:#ff5636;
    color: #FFFFFF;
}
.bg-tag-gray{
    background:#d8dfe0;
    color: #1b1b1b;
}
.bg-tag-light-yellow{
    background:#fffbef;
    color: #ff5636;
}
.bg-tag-light-blue{
    background:#ebf1ff;
    color: #3a77ff;
}
.bg-tag-light-red{
    background:#ffeeea;
    color: #991801;
}

.bg-alert-red{
    background: #ffd6c9;
}
.bg-alert-blue{
    background: #ceddff;
}
.bg-alert-yellow{
    background: #fff6d9;
}
.bg-alert-green{
    background: #c8f8f6;
}

.bg-video-bar{
    background: #23e5db;
    padding: 15px;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
}
.bg-video-bar:hover{
    background: #25eae0;
}
.btn-play{
    background: #002f34;
    color: #23e5db;
    padding: 10px 15px;
    border-radius: 3px;
}
.btn-100{
    width: 100%;
}
.input-select {
    background-color: #FFFFFF;
    height: 50px;
    color: #002F34;
    padding: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    cursor: pointer;
    border: 0;
    display: block;
    width: 100%;
    text-align: left;
    z-index: 101;
}
.list-websites li a{
    display: block;
    padding: 6px 15px;
    background: #fff;
}
#all_sites{
    position: absolute;
    top: 0px;
    padding-top: 50px;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background: #fff;
    border-radius: 4px;
}
#select_website .arrow-select{
    right: 23px;
}
#navigation.scroll{
    overflow-y: scroll;
}


/* 
    REWRITING STYLES
==============================*/

.logged-in .fl-module{
    border: 2px dashed #ccc !important;
    margin-bottom: 10px !important;
    padding: 10px !important;
}
.logged-in .fl-module-content{
    margin: 0;
}
.fl-field-control textarea{ 
    height: 200px !important;
    border: 1px solid #000;
} 

.fl-row-content-wrap{
    padding: 0;
}

.fl-module-rich-text table{
    overflow: hidden; 
    overflow: hidden;
    border: 1px solid var(--main-green);
}

.fl-module-rich-text table tr:first-child td{
    background: var(--main-green);
    color: var(--main-white);
    position: relative;
}
.fl-module-rich-text table tr:first-child td:after{
    content: "";
    position: absolute;
    right: 0;
    height: 60%;
    border-right: 1px solid #fff;
    top: 20%;
}
.fl-module-rich-text table td{
    border-bottom: 1px solid var(--main-green);
    padding: 5px 20px;
    position: relative;
}
.fl-module-rich-text table tr:nth-child(odd){ 
    background: #d8dfe0;
}

.fl-module-rich-text table tr td:after{
    content: "";
    position: absolute;
    right: 0;
    height: 60%;
    border-right: 1px solid var(--main-green);
    top: 20%;
}
.fl-module-rich-text table tr td:last-child:after{
    display: none;
}
.fl-module-content{
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0;
    margin-top: 40px;
}
pre{
    margin-bottom: 0;
} 
pre code.hljs{
    border-radius: 4px;
}
code{
    background: #000;
    color: #fff !important;
    display: block;
}
.modal-title{
    width: 100%;
    padding: 0 30px;
    text-align: center;
}
.modal-footer {
  text-align: center !important;
  width: 100%;
  display: block;
}
.faq-list li{
    border-bottom: 1px solid var(--main-gray);
    padding:0px 15px 0px 40px;
    margin-top: 1rem;
}
.faq-list li .question,
.faq-list li .arrow-select-left{
    cursor: pointer;
}
.faq-list li .question:hover{
    text-decoration: underline;
}
.switch_up svg{
    transform: rotate(180deg);
}
table{
    width: 100%;
}
#fl-builder-blocks-pro,
.fl-builder--panel-cta{
    display: none !important;
}
pre{
    white-space: nowrap;
}
pre code{
    white-space: break-spaces;
}
/*
    NEWSLETTER BOX
===========================*/
.newsletter-bottom{
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: calc(100% - 390px);
    padding: 20px;
    background: var(--main-gray);
    border-radius: 12px;
}
.icon-nl{
    padding:9px;
    background:#fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    margin-right: 10px;
}
.icon-nl img{
    width: 100%;
    height: auto;
}

/*
    RESPONSIVE STUFF
=================*/

@media only screen and (max-width: 850px) {

    header{
        padding: 5px 15px;
    }

    iframe{
        max-width: 100% !important;
    }
    .bg-menu,
    .wrapper-search,
    .wrapper-flags{
        display: none;
    }
    .wrapper-logo{
        width: 200px;
    }
    .menu-buttons{
        width: calc(100% - 200px);
    }
    .menu-buttons button{
        background: #fff;
        border: none;
        border-radius: 3px;
        height: 35px;
        width: 35px;
    }
    .logo{
        max-height: 20px;
    }
    .bg-menu{
        width: 100%;
        height: 100vh;
        overflow-y: scroll;
        padding-bottom: 30px;
          position: fixed;
          z-index: 999;
          top: 0;
    }
    #select_website{
        border: 1px solid rgba(0,0,0,0.1);
    }
    .content-wrapper{
        width: 100%;
        overflow: hidden;
    }
    #close_menu{
        position: fixed;
        top: 12px;
        right: 15px;
        z-index: 10000;
        background: rgba(0,0,0,0.1);
        border: 0;
        width: 35px;
        height: 35px;
        border-radius: 4px;
    }
    .wrapper-search{
        position: fixed;
        top: 0;
        background: var(--main-gray);
        width: 100%;
        left: 0;
        margin: 0;
        padding: 15px;
        z-index: 1000;
    }
    .wrapper-flags{
        position: fixed;
        z-index: 1000;
        width: 100%;
        background: var(--main-gray);
        left: 0;
        top: 0;
        padding: 15px;
        text-align: left;
    }
    .newsletter-bottom{
        width: calc(100% - 20px);
        right: 10px;
    }
}



@media only screen and (min-width: 850px) {

    .content-wrapper {
      padding: 50px;
      width: calc(100% - 350px);
      margin-left: 350px;
    }
    .fl-col{
        padding-right: 20px;
    }
    .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
        text-align: center;
      }
    .text-right-sm{
        text-align: right;
    }
    .bg-menu{
        position: fixed;
        left: 0;
        height: 100%;
        width: 350px;
    }
    .menu-bottom{
        position: absolute;
        bottom: 0px;
        background: #f1f4f5;
        width: 100%;
        left: 0;
        padding: 20px;
    }

}

@media only screen and (min-width: 1200px) {

    


}