/* DO NOT ADD YOUR CSS HERE... */

/* #region - Root */

:root {
    --font-size: 16px;
    --font-1: "Ubuntu";

    --color1: #333333;
    --color2: #00A3D9;
    --a: #007799;
    --hover: #007799;    

    --bg1: #f5f5f5;
    --bg2: #eeeeee;
}

/* #endregion */


/* --------------------------------------------------------
    MARK: GENERAL
-------------------------------------------------------- */

body:not(.wp-admin) {
    position: relative;
}
body:not(.wp-admin), .element  {
    font-size: var(--font-size);
    color: var(--color1);
    font-family: var(--font-1);
}

footer.element,
header.element, 
section.element,
div.element { 
    position: relative;
    width: 100%;
}

div.element p,
section.element p { 
    font-size: inherit; 
}

.element a {
    color: var(--a);
    cursor: pointer;
}

.element a:hover,
.element a:focus-visible {
    color: var(--hover);
}

.element a:active {
    background-color: transparent;
}

.element a, 
.element a:hover, 
.element a:focus, 
.element a:active {
    outline: 0; 
    text-decoration: none;
}

.element .more span,
.element .btn span {
    display: inline-block;
}

img {
    height: auto;
}

.element img {
    width: 100%;
    height: auto;
}

img.bg,
img.overlay,
.bgimg img,
.overlay-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.element iframe {
    border: none;
    height: 100%;
    width: 100%;
}

.element .container-xl, 
.element .container, 
.element .container-lg { 
    position: relative;  
}

ul.none { 
    list-style: none; 
}

.element hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
    border-top: 1px solid rgba(0,0,0,.1);
}

.element input:focus-visible,
.element textarea:focus-visible,
.element select:focus-visible {
    /* border: 1px solid rgba(0, 0, 0, 0.5); */
    outline: none;
    /* filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.1)); */    
}

/* --------------------------------------------------------
    MARK: HTAGS
-------------------------------------------------------- */

.h1 { font-size: var(--h1); }
.h2 { font-size: var(--h2); }
.h3 { font-size: var(--h3); }
.h4 { font-size: var(--h4); }
.h5 { font-size: var(--h5); }
.h6 { font-size: var(--h6); }

.element h1, article h1 {
    font-size: var(--h1);
}

.element h2, article h2,
#poststuff section.element h2 {
    font-size: var(--h2);
}

.element h3, article h3 {
    font-size: var(--h3);
}

.element h4, article h5 {
    font-size: var(--h4);
}

.element h5, article h5 {
    font-size: var(--h5);
}

.element h6, article h6 {
    font-size: var(--h6);
}


/* --------------------------------------------------------
    MARK: CONTAINER
-------------------------------------------------------- */

.container-lg, 
.container, 
.container-xl, .max-1200 { 
    max-width: 1200px; 
}

/* --------------------------------------------------------
    MARK: ROW
-------------------------------------------------------- */

.row {
    row-gap: 30px;
}

.row .cc:only-child {
    flex-grow: 1;
    max-width: 100%;
}

.col-md-x5,
.col-lg-x5 {
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

@media only screen and (max-width: 767px) {
    .col-md-x5 {
        flex: 0 0 100%;
        max-width: 100%;    
    }
}

/* --------------------------------------------------------
    MARK: WRAP
-------------------------------------------------------- */

.element .wrap {
    position: relative;
}

.element .nowrap,
.element .no-wrap {
    padding: 0 !important;
}

.element .wrap.dflex {
    flex-wrap: wrap;
}

.element .wrap > .w100 {
    width: 100%;
    position: relative;
    display: flex;
}

/* --------------------------------------------------------
    MARK: DISPLAY
-------------------------------------------------------- */

.element .dnone, 
.dnone { 
    display: none !important; 
}

.hide-alt {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0px;
}

.remove_scroll { 
    overflow-y: hidden; 
}

.novisual,
span.novisual,
label.novisual {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


.hideme,
.hide-me, 
.nfo { 
    display: none; 
}

.navbar-brand span.nfo {
    display: none;
}

/* --------------------------------------------------------
    MARK: POSITIONS
-------------------------------------------------------- */

.ab-center {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.pos-abs {
    position: absolute !important;
}

.pos-rel {
    position: relative;
}

.pos-fix,
.pos-fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

/* --------------------------------------------------------
    MARK: FLEX | GRID
-------------------------------------------------------- */

.grid,
.dgrid {
    display: grid;
}

.cflex {
    display: flex;
    flex-direction: column;
}

.iflex {
    display: inline-flex;
}


.flex,
.flexic, 
.dflex { 
    display: flex; 
    flex-wrap: wrap;
}

ul.flexic {
    margin: 0;
    padding: 0;
}

.dflex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.idflex-center {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.dflex-space,
.dflex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dflex-between .btn-loop {
    text-align: right;
    margin-top: 0;
}

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


/* --------------------------------------------------------
    MARK: PLACEHOLDER
-------------------------------------------------------- */

.h300 {
    position: relative;
    height: 300px;
    overflow: hidden;
} 

.bg-grey { 
    background-color: #efefef; 
}

/* --------------------------------------------------------
    MARK: BACKGROUND
-------------------------------------------------------- */

    /* Image */
    .bg-img {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .bg-img { min-height: 200px; }

    .bg-img.con { background-size: contain; }

    .bg-img.auto {
        background-size: auto;
        background-color: #E5E5E5;
    }

    /* iframe */
    .bg-iframe { 
        position: relative; 
        overflow: hidden; 
        display: inline-block;
        width: 100%;
        height: 100%;
    }

    .bg-iframe.map {
        overflow: hidden;
    }

    .bg-iframe.map iframe {
        filter: grayscale(90%);
    }
    
    .bg-iframe.overlay { 
        position: absolute; 
    }

    .thumb-bg {
        background-color: black;
        height: 200px;
    }
    
    .bg-placeholder[data-ph="logo"] img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        object-fit: contain;
        width: 150px;
        height: auto;
        filter: brightness(0) invert(1);
        opacity: 0.3;
    }
    
    .bg-placeholder[data-ph="cpt"] img { 
    
    }

    img.obj-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


/* --------------------------------------------------------
    MARK: BASIC BTNS
-------------------------------------------------------- */

.btn { 
    display: inline-flex; 
    align-items: center;
    position: relative;
    padding: 7.5px 20px;   
    overflow: hidden;
}

.btn span { 
    z-index: 2; 
    position: relative;
    display: inline-block;
}

.btn::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 0;
    width: 0;
    transition: 0.3s;
    border-radius: 3px;
}    

.btn.active::after,
.btn:hover::after,
.btn:focus-visible::after { 
    width: 110%; 
    height: 110%; 
}

    @media only screen and (max-width: 600px) {
        .btn::after { display: none; }
    }

.btn.focus, 
.btn:focus { 
    box-shadow: none; 
}

.btn span.nfo { 
    display: none; 
}

.btn-loop {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-loop .separator:last-child {
    display: none;
}

/* --------------------------------------------------------
    MARK: BUTTONS
-------------------------------------------------------- */

    .a-btn {
        font-size: 1rem;
        line-height: 1;
        user-select: none;
        text-align: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        display: inline-flex;
        border-radius: .25rem;
    }

    .btn {
        transition: 0.8s;
    }

    /* #region - BUTTON 1 */ 

    .btn-1 { 
        border: 1px solid dimgray;
        background-color: dimgray;
        color: white;
    }
    
    .btn-1.active,
    .btn-1:hover,
    .btn-1:focus-visible {
        color: dimgray;
    }
    
    .btn-1::after {
        background-color: white;
    }    

    /* #endregion */

    /* #region - BUTTON 2 */ 

    .btn-2 {
        border: 1px solid gray;
        background-color: transparent;
        color: dimgray;
    }
    
    .btn-2.active,
    .btn-2:hover,
    .btn-2:focus-visible,
    .btn-2::after {
        background-color: dimgray;
    }
    
    .btn-2.active, 
    .btn-2:hover,
    .btn-2:focus-visible {
        color: white;
    }

    /* #endregion */

    /* #region - BUTTON 3 */ 

    .btn-3 { 
        border: 1px solid lightgray;
        background-color: lightgray;
        color: gray;
    }
    
    .btn-3.active,
    .btn-3:hover,
    .btn-3:focus-visible,
    .btn-3::after {
        background-color: dimgray;
        color: white;
    }    

    /* #endregion */

    /* #region - BUTTON w/ ICON */ 

    .btn[data-icon="btn"] {
        padding-left: 50px;
        background-position: 10px center;
        background-repeat: no-repeat;
        background-size: 25px;
        padding-left: 45px;
        padding-right: 12px;        
    }

    .btn[data-icon="btn"] img {
        position: absolute;
        max-width: 24px;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }    

    .btn[data-icon="btn"] { 
        border: 1px solid gray; 
        color: gray;
    }
    
    .btn[data-icon="btn"].active,
    .btn[data-icon="btn"]:hover,
    .btn[data-icon="btn"]:focus-visible {
        color: dimgray;
    }
    
    .btn[data-icon="btn"]:hover,
    .btn[data-icon="btn"]:focus-visible,
    .btn[data-icon="btn"]::after {
        background-color: lightgray;
    }   

    /* #endregion */

    /* #region - PLAIN ICON */ 

    .btn[data-icon="icon"] { 
        padding: 0; 
    }
    
    .btn[data-icon="icon"] span { 
        display: none; 
    }
    
    .btn[data-icon="icon"] img { 
        width: 40px; 
        position: relative;
        z-index: 2;
    }

    /* #endregion */

    /* #region - PRE/POST ICON */ 

    .btn.w-icon { 
        padding: 0; 
    }
    
    .btn.w-icon::after { 
        display: none; 
    }
    
    .btn.w-icon img { 
        max-width: 15px; 
        margin-top: 2px; 
    }
    
    .btn[data-icon="post"] img { 
        margin-left: 8px; 
    }
    
    .btn[data-icon="pre"] img { 
        margin-right: 8px; 
    }
    
    .btn.w-icon span.nfo {
        display: none;
    }
    
    .btn.w-icon span { 
        position: relative; 
        display: inline-block; 
        font-size: 80%;
        color: gray;
    }
    
    .btn.w-icon span::before { 
        content: ''; 
        height: 1px;
        width: 100%;
        position: absolute;  
        bottom: 0; 
        left: 50%;
        transform: translateX(-50%); 
        transition: 0.3s; 
        background-color: #ccc; 
    }
    
    .btn.w-icon:hover span::before,
    .btn.w-icon:focus-visible span::before { 
        width: 30%; 
    }  

    /* #endregion */

    /* #region - LINK MORE */ 

    .link-more .overlay { 
        display: none; 
    }

    .link-more span {
        color: gray;
        display: inline-block;
    }

    /* #endregion */

    .a-span { 
        position: relative; 
        z-index: 2; 
    }

/* --------------------------------------------------------
    MARK: OVERLAYS
-------------------------------------------------------- */

.overlay, 
.overlay-img { 
    position: absolute; 
    height: 100%; 
    width: 100%; 
    top: 0px; 
    left: 0px; 
    z-index: 0;
    overflow: hidden;
}

.top-overlay { 
    top: 0px; 
    bottom: inherit; 
}

.btm-overlay { 
    top: inherit; 
    bottom: 0px; 
}

.bgimg {
    min-height: 300px;
}

.div-bg {
    height: 300px;
    position: relative;
}

.img.overlay {
    width: 100%;
}

.div-bg .img.overlay {
    width: 100%;
}

.div-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 90%;
    position: relative;
}

/* --------------------------------------------------------
    MARK: POP MEDIA
-------------------------------------------------------- */

    .std-vid:hover {
        cursor: pointer;
    }

    /* #region ~ as Popup */

    .pop-link {
        display: block;
        position: relative;
    }
    
    .pop-link .overlay {
        background-color: rgba(0, 0, 0, 0.3);
    }
    
    .pop-link .overlay,
    .pop-link .overlay img {
        opacity: 0;
        transition: 0.3s;
    }
    
    .pop-link .overlay img {
        max-width: 50px;
    }
    
    .pop-link .overlay img,
    .pop-link .overlay img {
        filter: brightness(0) invert(1);
    }

    .pop-link .overlay img.pop {
        filter: none;
    }
    
    .pp-iframe .overlay img {
        filter: none;
    }
    
    .pop-link.pop-yt .overlay,
    .pop-link.pop-yt .overlay .icon-btn,
    .pop-link.pop-vm .overlay,
    .pop-link.pop-vm .overlay .icon-btn {
        opacity: 1;
    }
    
    .pop-link:hover .overlay,
    .pop-link:focus-visible .overlay,
    .pop-link:hover .overlay img,
    .pop-link:focus-visible .overlay img {
        opacity: 1;
    }

    .pop-link .vid-thumb {
        
    }

    .pop-link img.d-img {
        width: 100%;
    }

    .pop-video {
        display: block;
        min-height: 300px;
        position: relative;
    }

    .pop-video img,
    .pop-video video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .pop-link .play { position: relative; }
    .pop-link .play img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: 40px;
        height: 40px;
    }


    
    
    /* #endregion */

    /* #region ~ as BG */

    .lazy-vid {
        max-width: 100%;
    }

    .element .overlay iframe, 
    .overlay iframe,
    iframe[data-as="bg"] {
        height: 135%;
        width: 100%;
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        position: absolute;
        overflow: hidden;
    }    

    .element .d-iframe,
    iframe.d-map {
        min-height: 300px;
    }

    .overlay .d-map {
        height: 100%;
    }

        /* #region ~ Youtube + Vimeo */

        .d-bgvimeo,
        .d-bgyoutube { 
            min-height: 300px; 
            position: relative;
        }

        .element .d-vimeo,
        .element .d-youtube {
            height: 300px;
        }        

        .d-bgvimeo .d-vimeo,
        .d-bgyoutube .d-youtube {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .element .d-ytoverlay {
            position: absolute;
            width: 100%;
            height: calc(100% + 120px);
            object-fit: cover;
            object-position: center center;   
            bottom: -60px;         
        }

        .element .d-vmoverlay {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;   
        }

        .bg-vm.overlay,
        .bg-yt.overlay { 
            overflow: hidden; 
        }
        
        .bg-vm.overlay iframe,
        .bg-yt.overlay iframe {
            position: absolute;
            top: 50% !important;
            left: 50% !important;    
            transform: translateY(-50%) translateX(-50%);
        }

        .element .ytbg,
        .element .vmbg {
            height: 100%;
            min-height: 400px;
        }
        
        .element .yt-bg,
        .element .vm-bg {
            position: absolute;
            top: 50% !important;
            left: 50% !important;    
            transform: translateY(-50%) translateX(-50%);
        }    

        .element .vm-bg iframe.d-vimeo {
            height: 164%;
        }
    
        a.d-vimeo, 
        a.d-youtube { 
            width: 100%; 
        }

        /* #endregion */

        /* #region ~ Image + Video */
        
        video {
            width: 100%;
        }

        video.overlay-bg,
        .overlay video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            top: 0;
            left: 0;
        }
        
        .element .img-bg, 
        .element .vid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            top: 0;
            left: 0;
        }

        .fancy-modal.video-modal {
            max-width: 900px;
        }

        .video-modal .bgvid {
            width: 100%;
            height: 100%;
        }

        /* #endregion */

    /* #endregion */

/* #endregion */

/* --------------------------------------------------------
    MARK: SHORT CODE
-------------------------------------------------------- */

    /* #region ~ social icons */

    .social-icons {
        display: flex;
        gap: 10px;
    }
    
    .social-icons .soc-link {
        min-width: 20px;
    }

    .social-icons .soc-link .icon-bg,
    .social-icons .soc-link .icon-bg span {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }
        
    .social-icons .soc-link img {
        max-width: 22px;
    }    

    .meta.social-icons {
        gap: 15px;
    }

    .meta.social-icons .soc-link img { 
        max-width: 18px;
        max-height: 18px;
    }

    .meta.social-icons .soc-link {
        background-color: black;
        display: inline-block;
        padding: 8px;
        border-radius: 5px;
        transition: 0.3s;
    }

    .meta.social-icons .soc-link:hover {
        background-color: var(--color2);
    }


    .meta.social-icons .soc-link img {
        filter: brightness(0) invert(1);      
    }

    .sli img.d-icon {
        width: 100%;
        height: 100%;
        max-width: 40px;
        max-height: 40px;
    }

    /* #endregion */

    /* #region ~ contact info */

    .sc-contact, 
    .sc-link { 
        display: inline-flex; 
        align-items: center; 
    }
    
    .sc-contact {
        display: inline-flex;
        position: relative;
    }

    .sc-contact.w-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sc-contact p { 
        margin-bottom: 0; 
    }    
    
    .element .ssc .sc-icon {
        height: 15px;
        width: auto;
        margin-right: 10px;
    }  

    .sc-div {
        display: flex;
        flex-wrap: wrap;
    }

    .scd {
        display: inline-flex;
        position: relative;
        flex: 0 0 100%;
    }

    /* #endregion */

    /* #region ~ office hours */

    .sc-hours .item {
        display: flex;
        justify-content: space-between;        
    }    

    /* #endregion */    

/* --------------------------------------------------------
    MARK: ELEMENTS SETTINGS 
-------------------------------------------------------- */

    /* #region ~ text alignment */

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

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

    .text-right,
    .element.text-right { 
        text-align: right; 
    }
    
    .text-right .btn-loop {
        justify-content: flex-end;
    }
    .text-center .btn-loop {
        justify-content: center;
    }

    /* #endregion */

    /* #region ~ vertical alignment */

    .dflex-vdefault {  align-items: center; }
    .dflex-vcenter {  align-items: center; }
    .dflex-vtop { align-items: flex-start; }
    .dflex-vbottom { align-items: flex-end; }    

    /* #endregion */ 

/* --------------------------------------------------------
    MARK: RESPONSIVE
-------------------------------------------------------- */

.desktop-view,
.desktop-view-md,
.desktop-view-lg {
    display: block;
}

tr.desktop-view-md {
    display: table-row;
}
th.desktop-view-md,
td.desktop-view-md {
    display: table-cell;
}

.mobile-view,
.mobile-view-md,
.mobile-view-lg {
    display: none;
}

@media only screen and (max-width: 991px) {
    .desktop-view-lg { display: none; }
    .mobile-view-lg  { display: block; }
}

@media only screen and (max-width: 768px) {
    .desktop-view-md { display: none; }
    .mobile-view-md  { display: block; }

    tr.mobile-view-md { display: table-row; }
    th.desktop-view-md, td.desktop-view-md { display: none; }    
}

@media only screen and (max-width: 480px) {
    .desktop-view { display: none; }
    .mobile-view  { display: block; }   
}

.element .show-xl, 
.element .show-xl-iflex, 
.element .show-xl-flex,
.element .show-xl-grid { display: none; }

.element .show-lg, 
.element .show-lg-iflex, 
.element .show-lg-flex,
.element .show-lg-grid { display: none; }

.element .show-md, 
.element .show-md-iflex, 
.element .show-md-flex,
.element .show-md-grid { display: none; }

.element .show-sm, 
.element .show-sm-iflex, 
.element .show-sm-flex,
.element .show-sm-grid { display: none; }

.hide-lg, 
.hide-lg-iflex, 
.hide-lg-flex,
.hide-lg-grid { }

.hide-md, 
.hide-md-iflex, 
.hide-md-flex,
.hide-md-grid { }

.show-sm, 
.show-sm-iflex, 
.show-sm-flex,
.show-sm-grid { }

@media only screen and (max-width: 1200px) {
    .element .show-xl { display: block; } 
    .element .show-xl-iflex { display: inline-flex; } 
    .element .show-xl-flex { display: flex; }
    .element .show-xl-grid { display: grid; }

    .element .hide-xl, 
    .element .hide-xl-iflex, 
    .element .hide-xl-flex,
    .element .hide-xl-grid { display: none; }
}

@media only screen and (max-width: 1024px) {
    .element .show-lg { display: block; } 
    .element .show-lg-iflex { display: inline-flex; } 
    .element .show-lg-flex { display: flex; }
    .element .show-lg-grid { display: grid; }

    .element .hide-lg, 
    .element .hide-lg-iflex, 
    .element .hide-lg-flex,
    .element .hide-lg-grid { display: none; }
}

@media only screen and (max-width: 800px) {
    .element .show-md { display: block; } 
    .element .show-md-iflex { display: inline-flex; } 
    .element .show-md-flex { display: flex; }
    .element .show-md-grid { display: grid; }

    .element .hide-md, 
    .element .hide-md-iflex, 
    .element .hide-md-flex,
    .element .hide-md-grid { display: none; }
}

@media only screen and (max-width: 480px) {
    .element .show-sm { display: block; } 
    .element .show-sm-iflex { display: inline-flex; } 
    .element .show-sm-flex { display: flex; }
    .element .show-sm-grid { display: grid; }

    .element .hide-sm, 
    .element .hide-sm-iflex, 
    .element .hide-sm-flex,
    .element .hide-sm-grid { display: none; }
}

/* --------------------------------------------------------
    MARK: FIXES
-------------------------------------------------------- */

    /* PREVENT CHROME FROM DOWN RENDER 04.20 */

    @media screen and (-webkit-min-device-pixel-ratio:0)
    and (min-resolution:.001dpcm) {
        .bg-img, img {
            image-rendering: -webkit-optimize-contrast !important;
        }
    }

    /* Unset for Safari 11+ */
    @media not all and (min-resolution:.001dpcm)
    { @supports (-webkit-appearance:none) and (stroke-color:transparent) {
        .bg-img, img {
            image-rendering: unset !important;
        }
    }}

/* --------------------------------------------------------
    MARK: ELEMENTS FIELD
-------------------------------------------------------- */

    /* #region ~ Title */

    .atitle,
    .btitle,
    .mtitle, 
    .dtitle, 
    .ititle { 
        line-height: 100%; 
        margin-bottom: 0; 
        display: inline-block;
        width: 100%;
    }    
    
    /* #endregion */

    /* #region ~ Text */ 
    .dtext p { margin-top: 0; }
    .dtext p:last-child,
    .ptext p:last-child
    section.element .ptext p:last-child,
    section.element .dtext ol:last-child,
    section.element .dtext ol li:last-child,
    section.element .dtext ul li:last-child,
    section.element .dtext ul:last-child,
    section.element .dtext p:last-child,
    section.element .itext p:last-child { 
        margin-bottom: 0; 
    }

    /* #endregion */ 

    /* #region ~ Image */

    .dthumb, 
    .dimage { 
        position: relative; 
        min-height: 100px; 
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.1); 
    }

    /* #endregion */

    /* #region ~ video */

    .vid {
        height: auto;
        width: 100%;
    }

    .bgvid {
        /*
        position: absolute;
        min-width: 100%; min-height: 100%;
        top: 50%; left: calc(50% - 2px);
        transform: translateX(-50%) translateY(-50%);
        */
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .overlay.vid {
        overflow: hidden;
    }
    
    .dvideo { 
        position: relative; 
        overflow: hidden; 
    }
    
    .dvideo.inlined {
        display: inline-block;
        width: 100%;
    }
    
    .dvideo.overlay { 
        position: absolute; 
    }
    
    .overlay.top .vid {
        width: auto;
        height: auto;
        top: 0%;
        transform: translateX(-50%);
    }
    
    .overlay.bottom .vid {
        width: auto;
        height: auto;
        top: unset;
        bottom: 0%;
        transform: translateX(-50%);
    }    
    
    .in-form60 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 22px;
        height: 60px;
        line-height: 60px;
        border: 2px solid #394a6d;
        width: 100%;
        font-size: 15px;
        font-weight: 300;
    }

    /* #endregion */    

    /* #region ~ Sub images ie. avatar. icon, logo */ 

    .fa-14 { 
        width: 14px; 
        height: 14px; 
    }

    .fa-16 { 
        width: 16px; 
        height: 16px; 
    }

    .diconn,
    .element .icon,
    .iconn {
        width: 100%;
        max-width: 60px;
    }

    .element .d-icon {
        width: 40px;
    }
  
    .element .f-icon svg {
        fill: black;
        width: 40px;
        height: auto;
        max-height: 40px;
    }

    .diconn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .diconn img {
        width: auto;
    }

    .element img.icon-pop {
        width: 40px;
        height: 40px;
    }

    .element img.icon-40 {
        width: 40px;
        height: 40px;
    }
    
    .dlogo {
        display: inline-block;
        max-width: 200px;
    }

    .dlogo img {
        width: auto;
    }    

    .davatar {
        background-color: rgba(0, 0, 0, 0.1);
        width: 80px;
        height: 80px;
        position: relative;
    }
    
    .sep,
    span.separator { margin: 0 5px; }

    .isep:last-child,
    .sep:last-child { display: none; }

    /* #endregion */

    /* #region - CUSTOM CLASS ~ Shapes */ 

    .round {
        border-radius: 100%;
        overflow: hidden;
    }


    .fancybox__viewport { max-height: 90%; }

    /* #endregion */

/* #endregion */


