/* ========================================================================
   Global / Utilities
   ======================================================================== */
html, body{
    font-family: "Maven Pro", sans-serif !important;
    font-weight: 450 !important;
}

.text-medium {
    font-size: 16px !important;
    line-height: 1.3;
}

.uk-text-large {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.formRequired {
    color: #c00518;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}


/* ========================================================================
   Header / Navigation
   ======================================================================== */

.tm-header-mobile .uk-navbar-container:not(.uk-navbar-transparent) {
    background: #f2f2f2 !important;
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

.tm-header-mobile .uk-navbar-item,
.tm-header-mobile .uk-navbar-toggle {
    min-height: 60px;
}

.tm-header-mobile .uk-navbar-toggle {
    height: 60px !important;
    min-height: 60px !important;
    font-size: 13px;
}

.tm-header-mobile .uk-logo.uk-navbar-item {
    height: 60px !important;
    min-height: 60px !important;
}

.tm-header-mobile .uk-navbar-item .uk-subnav>* {
    padding-left: 10px;
}


/* ========================================================================
   Toolbar
   ======================================================================== */

.tm-toolbar {
    padding: 0;
}

.tm-toolbar .langSwitcher {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
}


/* ========================================================================
   Page
   ======================================================================== */

.tm-page-container .tm-page {
    background: transparent !important;
}


/* ========================================================================
   Custom Lists
   ======================================================================== */

:is(ul.check, ul.arrow) {
    --list-icon-color: #00a9d8;

    margin: 0;
    padding: 0;
    list-style: none;
}

:is(ul.check, ul.arrow)>li {
    position: relative;
    margin-left: 25px;
    padding-left: 30px;
}

:is(ul.check, ul.arrow)>li::before {
    content: "";
    position: absolute;
    background-color: var(--list-icon-color);

    -webkit-mask-image: var(--list-icon);
    mask-image: var(--list-icon);

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: contain;
    mask-size: contain;
}


/* Check List
   ======================================================================== */

ul.check>li {
    --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M480 96C515.3 96 544 124.7 544 160L544 480C544 515.3 515.3 544 480 544L160 544C124.7 544 96 515.3 96 480L96 160C96 124.7 124.7 96 160 96L480 96zM438 209.7C427.3 201.9 412.3 204.3 404.5 215L285.1 379.2L233 327.1C223.6 317.7 208.4 317.7 199.1 327.1C189.8 336.5 189.7 351.7 199.1 361L271.1 433C276.1 438 283 440.5 289.9 440C296.8 439.5 303.3 435.9 307.4 430.2L443.3 243.2C451.1 232.5 448.7 217.5 438 209.7z'/%3E%3C/svg%3E");
}

ul.check>li::before {
    top: 0.15em;
    left: 0;
    width: 22px;
    height: 22px;
}


/* Arrow List
   ======================================================================== */

ul.arrow>li {
    --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 444.6 404.3'%3E%3Cpath d='M.1.1c-4.6,5.7,136.4,202,136.4,202,0,0-141.1,196.4-136.4,202,3.1,3.9,444.4-195.8,444.4-202S4.8-5.6.1.1Z'/%3E%3C/svg%3E");
}

ul.arrow>li::before {
    top: 9px;
    left: 5px;
    width: 12px;
    height: 12px;
}


/* ========================================================================
   RSForm
   ======================================================================== */

.rsform-block-privacy label .uk-text-small {
    display: inline;
    margin-left: 5px;
    font-size: 13px;
    line-height: 1.2 !important;
}

.rsform-captcha-box {
    width: 120px;
    height: 58px;
    margin-left: 5px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}


/* ========================================================================
   Google Maps
   ======================================================================== */

.tm-google-map {
    --map-height: 400px;

    position: relative;
    width: 100%;
    min-height: var(--map-height);
    overflow: hidden;
}

.tm-google-map iframe {
    display: none;
    width: 100%;
    height: var(--map-height);
    border: 0;
}

.tm-google-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--map-height);
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
}

.tm-google-map.is-loaded iframe {
    display: block;
}

.tm-google-map.is-loaded .tm-google-map-placeholder {
    display: none;
}


/* ========================================================================
   Responsive
   ======================================================================== */

@media (max-width: 639px) {

    .tm-google-map {
        --map-height: 350px;
    }

}