h1, h2, h3, h4{
    font-family: var(--font-family-title);
    color: var(--font-color-title);
}

.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.margin-center {
    margin-left: auto;
    margin-right: auto;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.visible {
    opacity: 1
}

.invisible {
    opacity: 0
}

.unvisibility {
    visibility: hidden;
}

.undisplay, .hidden {
    display: none;
}

.link {
    cursor: pointer;
}

.italic {
    font-style: italic;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-columns {
    display: flex;
}

.max-width-900 {
    max-width: 900px !important;
}

.max-width-1200 {
    max-width: 1200px;
}

.large-font-size {
    font-size: 2em !important;
}

.small-font-size {
    font-size: 0.8em !important;
}

.margin-top-10 {
    margin-top: 10px
}

.margin-top-20 {
    margin-top: 20px
}

.margin-vertical-10, .spacer-10 {
    margin-top: 10px;
    margin-bottom: 10px
}

.margin-vertical-20, .spacer-20 {
    margin-top: 20px;
    margin-bottom: 20px
}

.margin-vertical-30, .spacer-30 {
    margin-top: 20px;
    margin-bottom: 20px
}

.margin-vertical-50, .spacer-50 {
    margin-top: 50px;
    margin-bottom: 50px
}

span[data-definition] {
    cursor: help;
    text-decoration-style: dashed;
    text-decoration-line: underline;
    color: #838383;
}

.customize-control input::placeholder, .customize-control textarea::placeholder{
    color: #959393;
    font-style: italic;
}

.thumbnail-image {
    background: #cecece;
}

#media-gallery {
    background: #fff;
    width: 90%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.pt-thumbnails-gallery-item {
    margin: 10px;
    cursor: move;
    float: left;
}

.pt-thumbnails-gallery-item img {

}

.ui-state-highlight {
    height: 150px;
    width: 150px;
    background: #fffe88;
    border: 1px solid #cecece;
    margin: 10px;
    float: left;
}

#wpbody-content {
    text-align: center;
}

.submit {
    text-align: center!important;
}

#videoPlayer {
    border-radius: unset !important;
}

.video-responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

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


.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}

/* https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/ */
/* https://danielstern.ca/range.css/?ref=css-tricks#/ */

input[type=range] {
    width: 100%;
    margin: 6.9px 0;
    background-color: transparent;
    -webkit-appearance: none;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    background: #3071a9;
    border: 0.4px solid #010101;
    border-radius: 1.3px;
    width: 100%;
    height: 11.2px;
    cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
    margin-top: -7.3px;
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 9px;
    cursor: pointer;
    -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #3884c5;
}
input[type=range]::-moz-range-track {
    background: #3071a9;
    border: 0.4px solid #010101;
    border-radius: 1.3px;
    width: 100%;
    height: 11.2px;
    cursor: pointer;
}
input[type=range]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 9px;
    cursor: pointer;
}
input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 7.9px 0;
    color: transparent;
    width: 100%;
    height: 11.2px;
    cursor: pointer;
}
input[type=range]::-ms-fill-lower {
    background: #285e8d;
    border: 0.4px solid #010101;
    border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
    background: #3071a9;
    border: 0.4px solid #010101;
    border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 9px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
    background: #3884c5;
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
    /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
    input[type=range] {
        margin: 0;
        /*Edge starts the margin from the thumb, not the track as other browsers do*/
    }
}

/* OTHER BASIC */

.swal2-popup {
    font-size: .7em !important;
    padding: 10px !important;
}

.swal-consent-popup {
    max-width: 1000px !important;
    width: 100% !important;
    font-size: 16px !important;
}

.swal-consent-action {
    align-items: stretch !important;
    flex-direction: column;
}

.swal-consent-cancel {
    background: unset !important;
    /*color: var(--font-color) !important;*/
    text-decoration: underline;

    text-align: left;
}

.swal-consent-button {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #7066e0;
    color: #fff;
    font-size: 1em;
}

@media (min-width: 700px) {
    html {
        font-size: calc(1.275rem + .2vw) !important;
    }
    .swal-consent-action {
        flex-direction: row;
        width: 100% !important;
        justify-content: flex-end !important;
    }

    .swal-consent-cancel {
        width: calc(100% - 410px);
    }
}

*{
    box-sizing:border-box;

    /*font-weight: 300;*/
}

html {
    /*font-size: calc(1.275rem + .2vw);*/
    font-size: 20px;
    line-height: 1.7;
}

h1 {
    /*line-height: 1.1em;*/
    line-height: 1.3em;
    font-size: 2em;
}

body {
    display: flex;
    margin: 0 !important;
    background: var(--bg-color);
    font-family:var(--font-family-body);
    color: var(--font-color);
}

.inline {
    display: inline-block !important;
}

.whitebg {
    background-color: #FFFFFF;
}

.uppercase {
    text-transform: uppercase;
}

.align-left {
    text-align: left;
}

.page-900 {
    max-width: 900px;
    margin: 0 auto;
}

.padding-15 {
    padding: 15px;
}

.page-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.align-center {
    text-align: center;
}

.vertical-align-center {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}

a {
    color: #2271b1;
}

.grided {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}


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

}



@media (min-width: 360px) {


}

@media (min-width: 768px) {
    /* FOOTER */

    .footer-menu ul {
        text-align: left;
    }

    .footer-wrapper {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .footer-social {
        justify-content: space-around;
        flex-direction: column;
    }

    .footer-social a {
        margin: 10px 0;
    }

    #copyright {
        text-align: right;
    }
}

@media (min-width: 1024px) {

}



/* SWITCH */

.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.switch input {
    display:none;
}