/*
font-family: 'Source Sans Pro', sans-serif;
regular -> 400
semibold -> 600
bold -> 700
*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    display: flex;
    flex-direction: column;
}

textarea {
    resize: none;
}

html {
    position: relative;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    font-style: normal;
    background-color: #F8F8F8;
    color: #444;
    position: relative;
    word-wrap: break-word;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    overflow-x: hidden;
}

/* ++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++ */
/* FOR FIXED FOOTER !!! */
.ticket {
    min-height: 100vh;
    flex-direction: column;
    background-color: white;
}

.ticket-content {
    flex: 1;
}
/* ++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++ */

/* text */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    line-height: 1;
    margin-top: 0;
}

h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 2.42424rem;
}

h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    font-weight: 700;
}

h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.80808rem;
}

h6 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0.60606rem;
}

p {
    margin: auto auto 1.5rem;
}

    p + p {
        text-indent: 1.5rem;
        margin-top: -1.5rem;
    }

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
    outline: none !important;
}

li {
    list-style: none;
}
/* links */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    transition: all 0.3s ease-in-out;
}

    a:hover {
        text-decoration: none;
        color: #0052A1;
        transition: all 0.3s ease-in-out;
    }

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none;
    }

        a:not([href]):not([tabindex]):hover,
        a:not([href]):not([tabindex]):focus {
            color: inherit;
            text-decoration: none;
        }

        a:not([href]):not([tabindex]):focus {
            outline: 0;
        }

    a.btn {
        text-decoration: none;
    }

    a.clean {
        color: inherit;
        text-decoration: none;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
        transition: all 0.3s ease-in-out;
    }

        a.clean:hover {
            text-decoration: none;
            color: red;
            transition: all 0.3s ease-in-out;
        }

li {
    margin-top: 1rem;
}

/* -------------------------------------------- */
/* UTILITIES ---------------------------------- */
/* -------------------------------------------- */
.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.tk-flex-row-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.tk-flex-row-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.tk-flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
/* FLEX ALIGNS ON THE CHILD */
.tk-flex {
    display: flex;
}

    .tk-flex.align-center {
        margin: auto;
        align-self: center;
    }

    .tk-flex.align-left {
        margin-right: auto;
        align-self: center;
    }

    .tk-flex.align-right {
        margin-left: auto;
        align-self: center;
    }

    .tk-flex.align-x-center {
        margin-right: auto;
        margin-left: auto;
    }

    .tk-flex.align-x-left {
        margin-right: auto;
    }

    .tk-flex.align-x-right {
        margin-left: auto;
    }

    .tk-flex.align-y-center {
        align-self: center;
    }

    .tk-flex.align-y-top {
        align-self: flex-start;
    }

    .tk-flex.align-y-bottom {
        align-self: flex-end;
    }

/* -------------------------------------------- */
/* TYPOGRAPHY --------------------------------- */
/* -------------------------------------------- */
.tk-large-body-text {
    font-size: 26px;
    line-height: 2;
    font-weight: 400;
}

.tk-small-body-text {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

.tk-title-and-subtitle {
    margin-top: 70px;
    margin-bottom: 30px;
}

    .tk-title-and-subtitle h2 {
    }

    .tk-title-and-subtitle h4 {
        color: #9FA0A5;
    }

.strong {
    font-style: normal;
    font-weight: 700;
}
/* -------------------------------------------- */
/* BORDER RADIUS ------------------------------ */
/* -------------------------------------------- */
.tk-small-border-radius {
    border-radius: 4px;
}

.tk-border-radius {
    border-radius: 8px;
}

/* -------------------------------------------- */
/* SHADOWS ------------------------------------ */
/* -------------------------------------------- */
.tk-shadow {
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
}

.tk-shadow-hover {
    box-shadow: 0px 10px 16px rgba(0,10,0,0.4);
}

/* -------------------------------------------- */
/* COLORS ------------------------------------- */
/* -------------------------------------------- */
.tk-color-blue {
    color: #0052A1 !important;
}

.tk-color-red {
    color: #ED1C24 !important;
}

.tk-color-gray {
    color: #9FA0A5 !important;
}

.tk-color-gray-light {
    color: #F8F8F8 !important;
}

.tk-color-black {
    color: #3B3B3B !important;
}

.tk-color-white {
    color: #FFFFFF !important;
}

.tk-processed {
    color: rgba(105, 228, 166, 0.2) !important;
}

.tk-processing {
    color: rgba(255, 202, 131, 0.2) !important;
}

.tk-inactive {
    color: rgba(255, 114, 133, 0.2) !important;
}

.tk-background-blue {
    background-color: #0052A1 !important;
}

.tk-background-red {
    background-color: #ED1C24 !important;
}

.tk-background-gray {
    background-color: #9FA0A5 !important;
}

.tk-background-gray-light {
    background-color: #F8F8F8 !important;
}

.tk-background-black {
    background-color: #3B3B3B !important;
}

.tk-background-white {
    background-color: #FFFFFF !important;
}

/* -------------------------------------------- */
/* BUTTONS ------------------------------------ */
/* -------------------------------------------- */
.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 1.11111rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 0.88889rem 1.77778rem 0.94444rem 1.77778rem;
    font-size: 1rem;
    background-color: #ED1C24;
    border-color: #ED1C24;
    color: #FFFFFF;
    transition: background-color 300ms ease-out;
    min-width: 174px;
}

    .btn:hover,
    .btn:focus {
        text-decoration: none;
    }

    .btn:focus,
    .btn.focus {
        outline: 0;
    }

    .btn.disabled,
    .btn:disabled {
        opacity: 0.65;
    }

    .btn:not(:disabled):not(.disabled) {
        cursor: pointer;
    }

        .btn:not(:disabled):not(.disabled):active,
        .btn:not(:disabled):not(.disabled).active {
            background-image: none;
        }
/* button primary */
.btn-primary {
    color: #fff;
    background-color: #ED1C24;
    box-shadow: 0px 10px 20px rgba(26,4,5,0.35);
    border-radius: 1000px;
    font-size: 20px;
    transition: 0.3s all ease-in-out;
    z-index: 9999;
}

    .btn-primary:hover {
        box-shadow: 0px 10px 20px rgba(26,4,5,0.55);
        transition: 0.3s all ease-in-out;
    }

    .btn-primary:not(:disabled):not(.disabled):active,
    .btn-primary:not(:disabled):not(.disabled).active {
        color: #fff;
        background-color: #ED1C24;
        box-shadow: 0px 10px 20px rgba(26,4,5,0.35);
        border-radius: 1000px;
    }

/* button secondary */
.btn-secondary {
    color: #0052A1;
    background-color: transparent;
    border: 2px solid #0052A1;
    border-radius: 1000px;
    font-size: 18px;
    transition: 0.3s all ease-in-out;
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #0052A1;
        transition: 0.3s all ease-in-out;
    }

    .btn-secondary:not(:disabled):not(.disabled):active,
    .btn-secondary:not(:disabled):not(.disabled).active {
        color: #0052A1;
        background-color: transparent;
        border: 2px solid #0052A1;
    }

/* button clear */
.btn-clear {
    border-color: transparent !important;
    background-color: transparent !important;
    color: inherit;
    box-shadow: none;
    font-size: 18px;
}

.btn-with-icon {
    background-repeat: no-repeat;
    background-position: 2px center;
    background-size: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tk-add-dependent-btn {
    background-image: url(../images/svg/add_icon_blue.svg) !important;
}

.tk-remove-dependent-btn {
    background-image: url(../images/svg/minus_icon_black.svg) !important;
}

.tk-button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* -------------------------------------------- */
/* TO-TOP ------------------------------------- */
/* -------------------------------------------- */
#tk-to-top {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ED1C24;
    position: fixed;
    bottom: 50px;
    right: 2%;
    box-shadow: 0px 10px 20px rgba(26,4,5,0.35);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 1000;
}

    #tk-to-top img {
        height: 24px;
    }

    #tk-to-top.visible {
        transition: all 0.3s ease-in-out;
        opacity: 1;
    }
/* -------------------------------------------- */
/* HEADER ------------------------------------- */
/* -------------------------------------------- */
.tk-header {
    background-color: #ffffff;
    height: 70px;
    position: fixed;
    width: 100%;
    /* top: 0;
	left: 0; */
    z-index: 999999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 25px;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
}

    .tk-header a:not([id="changepasslink"]),
    .tk-header svg.tk-logo {
        width: 110px;
        height: 41px;
    }

    .tk-header svg.tk-notifications-svg {
        width: 19px;
        margin-right: 50px;
        cursor: pointer;
    }

        .tk-header svg.tk-notifications-svg:hover path {
            stroke: #0052A1;
        }

.tk-top-actions {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

#tk-personal-area-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    cursor: pointer;
}

    #tk-personal-area-content .tk-hello-text {
        font-size: 13px;
        line-height: 15px;
        font-weight: 400;
        color: #9FA0A5;
        margin-right: 4px;
    }

    #tk-personal-area-content .tk-hello-text-select {
        font-size: 13px;
        line-height: 15px;
        font-weight: 700;
        color: #3B3B3B;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 120px;
        white-space: nowrap;
    }

    #tk-personal-area-content .tk-open-arrow {
        margin-left: 5px;
    }

        #tk-personal-area-content .tk-open-arrow:before {
            content: '';
            width: 10px;
            height: 5px;
            border-top: 5px solid #3B3B3B;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            display: block;
            transition: transform 0.4s ease-in-out;
        }

    #tk-personal-area-content.openMenu .tk-open-arrow:before {
        transform: rotate(180deg);
        transition: transform 0.4s ease-in-out;
    }

    #tk-personal-area-content .tk-presonal-area-popup-menu {
        position: absolute;
        top: 35px;
        right: -15px;
        width: 185px !important;
        border-radius: 8px;
        padding: 20px;
        background-color: white;
        box-shadow: 0px 0px 17px 3px rgba(0,0,0,0.16);
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        transition: all 0.4s ease-in-out;
    }

    #tk-personal-area-content.openMenu .tk-presonal-area-popup-menu {
        opacity: 1;
        visibility: visible;
        z-index: 999999;
        transition: all 0.4s ease-in-out;
    }

        #tk-personal-area-content.openMenu .tk-presonal-area-popup-menu:before {
            content: '';
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #ffffff;
            position: absolute;
            top: -8px;
            right: 60px;
        }

    #tk-personal-area-content .tk-presonal-area-popup-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 200px;
        overflow-y: auto;
    }

        #tk-personal-area-content .tk-presonal-area-popup-menu ul li {
            font-size: 13px;
            font-weight: 600;
            color: #3B3B3B;
            cursor: pointer;
            padding-bottom: 15px;
        }

            #tk-personal-area-content .tk-presonal-area-popup-menu ul li:hover,
            #tk-personal-area-content .tk-presonal-area-popup-menu ul li.activeChoose {
                color: #0052A1;
            }

            #tk-personal-area-content .tk-presonal-area-popup-menu ul li:last-of-type {
                padding-bottom: 0px;
                position: relative;
            }
/*
#tk-personal-area-content .tk-presonal-area-popup-menu ul li:last-of-type::before {
	content: '';
	height: 1px;
	background-color: #E9E9F0;
	width: 98%;
	display: block;
	margin-bottom: 15px;
}
	*/
.tk-top-actions .select2-container {
    width: auto !important;
}

.select2-container .tk-header-select-drop .select2-results__option {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
}
/* notifications */
.tk-notifications-icon {
}
/* client section */
.tk-client-section {
}

    .tk-client-section:hover {
    }

    .tk-client-section.select {
    }

        .tk-client-section.select.open {
        }

        .tk-client-section.select .inner-item {
        }

            .tk-client-section.select .inner-item:hover {
            }

        .tk-client-section.select .inner-separator {
        }

.tk-client-section-thumb {
}

/* select */
.select2-container {
    margin-right: 30px;
}

.select2-dropdown {
    z-index: 999999;
    top: 10px;
}

.select2-container--open .select2-dropdown--below:not(.tk-filters-select-drop) {
    padding: 20px;
    width: 200px !important;
    border-radius: 8px;
}

.select2-container--open .select2-dropdown--below:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: absolute;
    top: -8px;
    right: 60px;
    /* box-shadow: 0px 0px 16px rgba(0,0,0,0.16); */
}

.select2-container--default .select2-selection--single {
    border: none;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #0052A1;
}

.select2-dropdown {
    border: none;
    box-shadow: 0px 0px 17px 3px rgba(0,0,0,0.16)
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 700;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
}

.select2-results__options {
    font-size: 13px;
}

.select2-results__option:last-of-type {
    padding-top: 15px;
    position: relative;
}

    .select2-results__option:last-of-type::before {
        content: '';
        height: 1px;
        background-color: #E9E9F0;
        width: 98%;
        display: block;
        margin-bottom: 15px;
    }
/* log */
.tk-log {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

    .tk-log span {
        color: #9FA0A5;
        margin-right: 8px;
    }

.tk-log-svg {
    width: 24px;
}

.tk-log:hover span {
    color: #0052A1;
}

.tk-log:hover .tk-log-svg path,
.tk-log:hover .tk-log-svg line {
    stroke: #0052A1;
}

/* -------------------------------------------- */
/* FOOTER ------------------------------------- */
/* -------------------------------------------- */
#footer {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
}

    #footer span:first-of-type {
        font-weight: 600;
        color: #3B3B3B;
        margin-right: 5px;
    }

    #footer span:last-of-type {
        font-weight: 400;
        color: #9FA0A5;
    }
/* -------------------------------------------- */
/* MENU-LEFT ---------------------------------- */
/* -------------------------------------------- */
.tk-menu {
    background-color: #0052A1;
    height: calc(100vh - 70px);
    position: fixed;
    bottom: 0;
    z-index: 999999;
}

.tk-menu-item {
    height: 50px;
    color: rgba(255,255,255,0.5);
    padding-left: 23px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
}

    .tk-menu-item svg {
        width: 18px;
        height: 18px;
    }

        .tk-menu-item svg .cls-1,
        .tk-menu-item svg .cls-2 {
            fill: none;
            opacity: 0.5;
        }

        .tk-menu-item svg .cls-2 {
            stroke: #ffffff;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2px;
        }

    .tk-menu-item:hover svg .cls-1, .tk-menu-item:hover svg .cls-2,
    .tk-menu-item.active svg .cls-1, .tk-menu-item.active svg .cls-2 {
        opacity: 1;
    }

    .tk-menu-item.title {
        background-color: rgba(0,0,0,0.3);
        height: 70px;
        box-shadow: 0px 2px 3px rgba(0,0,0,0.05);
    }

    .tk-menu-item a {
        margin-left: 15px;
        /* - */
        display: none;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
    }

        .tk-menu-item a.show {
            opacity: 1;
            transition: opacity 0.2s ease-in-out;
        }

        .tk-menu-item:hover, .tk-menu-item a:hover,
        .tk-menu-item.active, .tk-menu-item.active a {
            color: rgba(255,255,255,1);
        }

            .tk-menu-item:hover .overlay, .tk-menu-item a:hover .overlay,
            .tk-menu-item.active .overlay, .tk-menu-item.active a .overlay {
                width: 100%;
                background-color: rgba(0,0,0,0.1);
            }

    .tk-menu-item .overlay {
        width: 100%;
        background-color: rgba(0,0,0,0.0);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        cursor: pointer;
    }

    .tk-menu-item.active {
    }

        .tk-menu-item.active:after {
            display: inline;
            content: '';
            background-color: #ED1C24;
            height: 100%;
            width: 5px;
            position: absolute;
            right: 0;
        }

/* -------------------------------------------- */
/* BREADCRUMBS -------------------------------- */
/* -------------------------------------------- */
.tk-breadcrumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

    .tk-breadcrumbs li {
        list-style: none;
        font-size: 13px;
        color: #9FA0A5;
    }

        .tk-breadcrumbs li a {
            text-decoration: none;
        }

            .tk-breadcrumbs li a::after {
                content: '–';
                display: inline-block;
                padding-left: 10px;
                padding-right: 10px;
            }

        .tk-breadcrumbs li:last-of-type a::after {
            display: none;
        }
    /* current page */
    .tk-breadcrumbs .active-page {
        font-weight: 600;
        color: #0052A1;
    }

        .tk-breadcrumbs .active-page:hover {
        }

/* -------------------------------------------- */
/* CARDS -------------------------------------- */
/* -------------------------------------------- */

.tk-responsive-grid {
    margin: 0 auto;
    max-width: 1002px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
    /* for js that forces last row of cards to align left on centered grid */
    .tk-responsive-grid .cell.is-empty {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

.small-card {
    max-width: 219px;
    margin-right: 42px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 42px;
    cursor: pointer;
}

    .small-card:nth-of-type(4n) {
        margin-right: 0;
    }

.tk-small-card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    /* border: 1px solid rgba(0, 0, 0, 0.125); */
    border-radius: 0.25rem;
    /* --- */
    /* max-width: 219px; */
    width: 219px;
    height: 252px;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}

    .tk-small-card .tk-produt-subscibed {
        background-color: #E9E9F0;
    }

    .tk-small-card.subcribed {
        background-color: #E9E9F0;
        box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    }

    .tk-small-card.not-subscribed {
        background-color: #FFFFFF;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0.5;
    }

        .tk-small-card.not-subscribed img {
            width: 110px;
        }

.tk-products-simple-grid .tk-small-card:hover {
    cursor: pointer;
    box-shadow: 0px 10px 16px rgba(0,0,0,0.40);
    transition: 0.3s all ease-in-out;
}

.tk-products-simple-grid .tk-small-card.subcribed:hover {
    cursor: pointer;
    box-shadow: 0px 10px 16px rgba(0,0,0,0.40);
    transition: 0.3s all ease-in-out;
}

.tk-products-simple-grid .tk-small-card.not-subscribed:hover {
    cursor: pointer;
    background-color: #0052A1;
    box-shadow: 0px 10px 16px rgba(0,0,0,0.40);
    transition: 0.3s all ease-in-out;
}

    .tk-products-simple-grid .tk-small-card.not-subscribed:hover .cls-1,
    .tk-products-simple-grid .tk-small-card.not-subscribed:hover .cls-2,
    .tk-products-simple-grid .tk-small-card.not-subscribed:hover .cls-3 {
        fill: #ffffff;
        transition: 0.3s all ease-in-out;
    }

.tk-products-simple-grid .tk-small-card.not-subscribed span {
    display: none;
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
    width: 76px;
    line-height: 1.3;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.tk-products-simple-grid .tk-small-card.not-subscribed:hover span {
    display: block;
    color: rgba(255,255,255,0.5);
    position: absolute;
    bottom: 24px;
    transition: 0.3s all ease-in-out;
}

.bottom-half-circle {
    width: 237px;
    height: 237px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
}

    .bottom-half-circle::before {
        content: '';
        width: 263px;
        height: 263px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.5);
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
    }

.tk-products-simple-grid .card-svg {
    height: 100%;
    background-repeat: no-repeat;
}

    .tk-products-simple-grid .card-svg.t-restaurant-svg {
        background-image: url(../images/svg/t_restaurant_icon.svg);
        background-size: 185px;
        background-position: center 14px;
    }

    .tk-products-simple-grid .card-svg.t-educacao-svg {
        background-image: url(../images/svg/t_educacao_icon.svg);
        background-size: 165px;
        background-position: center 30px;
    }

    .tk-products-simple-grid .card-svg.t-ensino-svg {
        background-image: url(../images/svg/t_ensino_icon.svg);
        background-size: 165px;
        background-position: center 30px;
    }

    .tk-products-simple-grid .card-svg.t-car-svg {
        background-image: url(../images/svg/t_car_icon.svg);
        background-size: 185px;
        background-position: center 18px;
    }

.tk-products-simple-grid .card-products-logo {
    width: 110px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    transition: 0.3s all ease-in-out;
}
/* -------------------------------------------- */
/* FORM-WRAPPER ------------------------------- */
/* -------------------------------------------- */
form {
    margin: 0;
    padding: 0;
}

label {
    /* color: #9FA0A5; */
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

input:not([type]),
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-color: grey;
    padding-left: 5px;
    border-radius: 5px;
    box-shadow: none;
    color: #444444;
    display: block;
    font-family: inherit;
    font-size: 15px;
    height: 2.05556rem;
    margin: 0 0 0.88889rem 0;
    padding: 0.44444rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border-color 0.15s linear, background 0.15s linear;
    -moz-transition: border-color 0.15s linear, background 0.15s linear;
    -ms-transition: border-color 0.15s linear, background 0.15s linear;
    -o-transition: border-color 0.15s linear, background 0.15s linear;
    transition: border-color 0.15s linear, background 0.15s linear;
}

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

input[type="date"]::-ms-clear,
input[type="date"]::-moz-clear {
    display: none;
}

input:focus,
select:focus {
    outline: 0;
}

    input:focus::placeholder {
        color: transparent;
    }

input:disabled {
    background-color: #eaeaea;
}

label.labelBlue {
    color: #0052A1;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

label.labelGray {
    color: #9FA0A5;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

input.borderBlue {
    border-bottom: 2px solid #0052A1;
}

input.borderBlack {
    border-bottom: 2px solid black;
}

input[type="date"] {
    padding-left: 30px;
}

form.tk-form {
    padding: 20px 22px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.04);
}

.tk-form-group {
    position: relative;
    margin-top: 20px;
}

.tk-add-dependent-group {
    margin-top: 30px;
}

    .tk-add-dependent-group .tk-form-group {
        position: relative;
    }

    .tk-add-dependent-group .calendar-icon {
        position: absolute;
        width: 24px;
        top: 20px;
    }

.tk-dependent-wrapper {
    background-color: #F8F8F8;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 10px;
}

.tk-form-input-sub {
    font-size: 12px;
    color: #9FA0A5;
    position: absolute;
    bottom: -10px;
    left: 25px;
}

    .tk-form-input-sub.error {
        opacity: 0;
    }

.tk-remove-dependent {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

    .tk-remove-dependent button {
        position: absolute;
        right: 0;
        bottom: -10px;
        margin: 0;
    }

span.select2-selection.select2-selection--single {
    border-style: solid;
    border-width: 1px;
    border-color: grey;
    padding-left: 5px;
    border-radius: 5px;
    height: 32px;
}
/* input file upload */
input[type='file'] {
    color: transparent;
}


/* -------------------------------------------- */
/* FORM-INPUT-TEXT ---------------------------- */
/* -------------------------------------------- */


/* -------------------------------------------- */
/* FORM-INPUT-EMAIL --------------------------- */
/* -------------------------------------------- */


/* -------------------------------------------- */
/* FORM-DATE-PICKER --------------------------- */
/* -------------------------------------------- */


/* -------------------------------------------- */
/* FORM INPUT_STATUS--------------------------- */
/* -------------------------------------------- */
.tk-input-valid {
}

.tk-input-empty {
}

    .tk-input-empty label,
    .tk-input-empty input::placeholder,
    .tk-input-empty .tk-form-input-sub {
        color: #f7931e;
    }

    .tk-input-empty input {
        border-bottom: 2px solid #f7931e;
    }

.tk-input-error {
}

    .tk-input-error label,
    .tk-input-error input::placeholder,
    .tk-input-error .tk-form-input-sub {
        color: #B13525;
    }

    .tk-input-error input {
        border-bottom: 2px solid #B13525;
    }

    .tk-input-error .tk-form-input-sub:not(.error) {
        opacity: 0;
        transition: all 0.1s ease-in-out;
    }

    .tk-input-error .tk-form-input-sub.error {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }


/* -------------------------------------------- */
/* FORM CHECK-BOX ----------------------------- */
/* -------------------------------------------- */
.tk-checkbox-button {
}

.tk-checkbox-button {
    position: relative;
    display: inline-block;
}

    .tk-checkbox-button .checkbox-wrapper {
        width: 19px;
        height: 19px;
        display: inline-block;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    .tk-checkbox-button input[type="checkbox"] {
        width: 19px;
        height: 19px;
        margin: auto;
        opacity: 0;
        position: absolute;
        z-index: 2;
        top: 4px;
    }

    .tk-checkbox-button label {
        display: inline-block;
        vertical-align: middle;
        font-size: 13px;
        color: #3B3B3B;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0px;
        margin-left: 5px;
        opacity: 1;
    }

    .tk-checkbox-button .checkbox-wrapper::after {
        content: url(../images/svg/check_checked_blue.svg);
        background-color: transparent;
        position: absolute;
        top: 4px;
        left: 0px;
        opacity: 0;
        z-index: 1;
        width: 18px;
        height: 18px;
    }

    .tk-checkbox-button input[type="checkbox"]:checked + .checkbox-wrapper::after {
        opacity: 1;
    }

    .tk-checkbox-button input[type="checkbox"]:checked + .checkbox-wrapper {
        /* border: 2px solid #3B3B3B; */
    }

        .tk-checkbox-button input[type="checkbox"]:checked + .checkbox-wrapper + label {
            color: #2980b9;
        }

    .tk-checkbox-button input[type="checkbox"]:disabled + .checkbox-wrapper {
        border: 2px solid #D0D2D3;
    }

        .tk-checkbox-button input[type="checkbox"]:disabled + .checkbox-wrapper + label {
            color: #D0D2D3;
        }

/* -------------------------------------------- */
/* FORM RADIO-BUTTON -------------------------- */
/* -------------------------------------------- */
.radio-button {
    position: relative;
    display: inline-block;
}

    .radio-button .radio-button-wrapper {
        width: 24px;
        height: 24px;
        border: 3px solid #3B3B3B;
        border-radius: 30px;
        display: inline-block;
        vertical-align: middle;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }

        .radio-button .radio-button-wrapper::before {
            display: block;
            position: absolute;
            content: '';
            border-radius: 100%;
            height: 12px;
            width: 12px;
            top: 0px;
            bottom: 0px;
            left: 0px;
            right: 0px;
            margin: auto;
            background: transparent;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

    .radio-button label {
        display: inline-block;
        vertical-align: middle;
        font-size: 15px;
        font-weight: 400;
        color: #3B3B3B;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0px;
        margin-left: 5px;
        opacity: 1;
    }

    .radio-button input[type="radio"] {
        position: absolute;
        width: 24px;
        display: block;
        height: 24px;
        margin: 0px;
        opacity: 0;
        z-index: 1;
        cursor: pointer;
    }

        .radio-button input[type="radio"]:checked + .radio-button-wrapper {
            border: 3px solid #0052A1;
        }

            .radio-button input[type="radio"]:checked + .radio-button-wrapper::before {
                background: #0052A1;
            }

            .radio-button input[type="radio"]:checked + .radio-button-wrapper + label {
                color: #0052A1;
            }

        .radio-button input[type="radio"]:disabled + .radio-button-wrapper {
            border: 2px solid #D0D2D3;
        }

            .radio-button input[type="radio"]:disabled + .radio-button-wrapper + label {
                color: #D0D2D3;
            }





/* -------------------------------------------- */
/* FORM BUTTONS ------------------------------- */
/* -------------------------------------------- */
.tk-form-button-submit {
}

    .tk-form-button-submit:hover {
    }

.tk-form-button-clear {
}

    .tk-form-button-clear:hover {
    }

/* -------------------------------------------- */
/* DROPDOWN/SELECT ---------------------------- */
/* -------------------------------------------- */


/* -------------------------------------------- */
/* INFO-PILLS --------------------------------- */
/* -------------------------------------------- */
.tk-pill {
}

    .tk-pill.active {
    }

    .tk-pill.inactive {
    }

    .tk-pill.processed {
    }

    .tk-pill.processing {
    }


/* -------------------------------------------- */
/* DRAG AND DROP ------------------------------ */
/* -------------------------------------------- */
.tk-button-choose-file {
}

    .tk-button-choose-file:hover {
    }
/* cancel upload */
.tk-button-upload-cancel {
}

    .tk-button-upload-cancel:hover {
    }
/* submit upload */
.tk-button-submit-upload {
}

    .tk-button-submit-upload:hover {
    }


/* -------------------------------------------- */
/* PROGRESS-BAR ------------------------------- */
/* -------------------------------------------- */
/*
<div class="tk-progress" role="progressbar" tabindex="0" aria-valuenow="25" aria-valuemin="0" aria-valuetext="25 percent" aria-valuemax="100">
  <div class="tk-progress-meter" style="width: 25%"></div>
</div> 
 */
.tk-progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #E9E9F0;
    border-radius: 8px;
    height: 9px;
    max-width: 355px;
    width: 100%;
    border-radius: 25px;
}

.tk-progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0052A1;
    border-radius: 25px;
}



/* ===================================== */
/* LAYOUT STYLES */
/* ===================================== */
#header .row {
    margin-bottom: 0;
}

#main {
    margin-top: 70px;
    padding-left: 70px;
    transition: padding 0.4s ease-in-out;
}

    #main.paddingOpenMenu {
        padding-left: 200px;
        transition: padding 0.4s ease-in-out;
    }

    #main .container {
    }

/* CARREGAMENTO DE COLABORADORES */
.tk-carregamento-panel {
}

    .tk-carregamento-panel .panel-left {
        display: flex;
        flex-direction: row;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.04);
    }

    .tk-carregamento-panel .panel-left-title {
        display: flex;
        flex-direction: row;
        width: 136px;
        padding-left: 42px;
        padding-right: 42px;
        margin-top: 67px;
        margin-bottom: 40px;
        box-sizing: content-box;
        position: relative;
    }

        .tk-carregamento-panel .panel-left-title > div {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 100%;
        }

            .tk-carregamento-panel .panel-left-title > div img {
                width: 65px;
                margin-bottom: 20px;
            }

            .tk-carregamento-panel .panel-left-title > div span {
                text-align: center;
                font-size: 16px;
                font-weight: 600;
                color: #0052A1;
                max-width: 100%;
            }

        .tk-carregamento-panel .panel-left-title::after {
            content: '';
            display: inline-block;
            width: 1px;
            height: 160px;
            background-color: #E9E9F0;
            position: absolute;
            right: 0;
        }

    .tk-carregamento-panel .panel-left-options {
        display: flex;
        flex-direction: column;
        margin-left: 42px;
        justify-content: center;
    }

        .tk-carregamento-panel .panel-left-options .radio-button {
            margin-bottom: 35px;
        }

            .tk-carregamento-panel .panel-left-options .radio-button:last-of-type {
                margin-bottom: 0;
            }

            .tk-carregamento-panel .panel-left-options .radio-button label {
                width: calc(100% - 35px);
            }

    .tk-carregamento-panel .small-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 42px;
    }

        .tk-carregamento-panel .small-panel > div {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            background-color: #ffffff;
            border-radius: 8px;
            width: 160px;
            height: 186px;
            padding-top: 42px;
            padding-bottom: 16px;
            padding-left: 14px;
            padding-right: 14px;
            box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
            cursor: pointer;
        }

            .tk-carregamento-panel .small-panel > div svg {
                width: 55px;
                margin-bottom: 15px;
            }

            .tk-carregamento-panel .small-panel > div span {
                text-align: center;
                font-size: 16px;
                font-weight: 600;
                color: #9FA0A5;
                width: 136px;
            }

            .tk-carregamento-panel .small-panel > div:hover {
                box-shadow: 0px 10px 16px rgba(0,0,0,0.40);
            }

                .tk-carregamento-panel .small-panel > div:hover span {
                    color: #3B3B3B;
                }

                .tk-carregamento-panel .small-panel > div:hover svg.listagem line.cls-2,
                .tk-carregamento-panel .small-panel > div:hover svg.listagem line.cls-3 {
                    stroke: #3B3B3B !important;
                }

                .tk-carregamento-panel .small-panel > div:hover svg.listagem ellipse.cls-4 {
                    fill: #3B3B3B !important;
                }

                .tk-carregamento-panel .small-panel > div:hover svg.historico path.cls-2 {
                    stroke: #3B3B3B !important;
                }
/* .tk-carregamento-panel .small-panel > div:hover svg.listagem .cls-3,
.tk-carregamento-panel .small-panel > div:hover svg.listagem .cls-4 {
	stroke: #3B3B3B !important;				
} */
.tk-carregamento-form {
}

/* CARREGAMENTO DE FICHEIROS */
.tk-carregamento-ficheiros form.tk-form {
    padding: 40px 20px 40px 40px;
}

.tk-file-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed #9FA0A5;
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}

    .tk-file-upload-wrapper img {
        width: 85px;
    }

    .tk-file-upload-wrapper h2 {
        margin-top: 23px;
    }

.tk-file {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

    .tk-file input {
        display: none;
    }

.tk-select-file-button {
    cursor: pointer;
    width: 155px;
    font-size: 16px;
    margin-top: 10px;
}

.tk-file-input {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}

.tk-progress-bar-group {
    width: 100%;
    position: relative;
    max-width: 392px;
    margin-top: 58px;
}

    .tk-progress-bar-group img {
        width: 20px;
        position: absolute;
        top: 21px;
        right: 0;
    }

.tk-progress-file-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 355px;
    width: 100%;
    margin-bottom: 4px;
    font-size: 15px;
}

    .tk-progress-file-info span:last-of-type {
        color: #9FA0A5;
    }

.tk-progress-file-status {
    margin-top: 4px;
}

    .tk-progress-file-status span {
        color: #9FA0A5;
        font-size: 13px;
    }

.tk-file-info-wrapper {
    display: flex;
}

    .tk-file-info-wrapper .tk-button-group {
        align-items: flex-end;
    }

        .tk-file-info-wrapper .tk-button-group .btn-primary {
            margin-bottom: 0;
        }

/* PEDIDO DE EMISSÃO */
.tk-pedido-emissao-panel {
}

    .tk-pedido-emissao-panel .inner-panel {
        display: flex;
        flex-direction: row;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.04);
        min-height: 252px;
        align-items: center;
    }

        .tk-pedido-emissao-panel .inner-panel .panel-left-title {
            display: flex;
            flex-direction: column;
            width: 136px;
            margin-left: 42px;
            margin-right: 42px;
            margin-bottom: 40px;
        }

            .tk-pedido-emissao-panel .inner-panel .panel-left-title img {
                width: 113px;
            }

        .tk-pedido-emissao-panel .inner-panel .small-panel {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            margin-left: 42px;
            border-radius: 8px;
            width: 160px;
            height: 186px;
            padding-top: 42px;
            padding-bottom: 16px;
            padding-left: 14px;
            padding-right: 14px;
            box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: 0.3s all ease-in-out;
        }

            .tk-pedido-emissao-panel .inner-panel .small-panel:hover {
                box-shadow: 0px 10px 16px rgba(0,0,0,0.4);
                transition: 0.3s all ease-in-out;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel img {
                width: 80px;
                margin-bottom: 37px;
                transition: 0.3s all ease-in-out;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel span {
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                color: #0052A1;
                z-index: 99;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel .bottom-half-circle {
                width: 174px;
                height: 174px;
                border-radius: 50%;
                background-color: #0052A1;
                position: absolute;
                bottom: -60%;
                left: 50%;
                transform: translateX(-50%);
                /* -- */
                visibility: hidden;
                opacity: 0;
                transition: all 0.3s ease-in-out;
            }

                .tk-pedido-emissao-panel .inner-panel .small-panel .bottom-half-circle::before {
                    content: '';
                    width: 193px;
                    height: 193px;
                    border-radius: 50%;
                    background-color: rgba(0,81,161,0.5);
                    position: absolute;
                    bottom: -8px;
                    left: 50%;
                    transform: translateX(-50%);
                    /* -- */
                    visibility: hidden;
                    opacity: 0;
                    transition: all 0.1s ease-in-out;
                }

            .tk-pedido-emissao-panel .inner-panel .small-panel.hideOpacity img {
                opacity: 0.3;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel.hideOpacity span {
                opacity: 0.3;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel:hover img,
            .tk-pedido-emissao-panel .inner-panel .small-panel:hover span,
            .tk-pedido-emissao-panel .inner-panel .small-panel.active img,
            .tk-pedido-emissao-panel .inner-panel .small-panel.active span {
                opacity: 1;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel:hover span,
            .tk-pedido-emissao-panel .inner-panel .small-panel.active span {
                color: #ffffff;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel:hover img,
            .tk-pedido-emissao-panel .inner-panel .small-panel.active img {
                margin-bottom: 55px;
            }

            .tk-pedido-emissao-panel .inner-panel .small-panel:hover .bottom-half-circle,
            .tk-pedido-emissao-panel .inner-panel .small-panel:hover .bottom-half-circle::before,
            .tk-pedido-emissao-panel .inner-panel .small-panel.active .bottom-half-circle,
            .tk-pedido-emissao-panel .inner-panel .small-panel.active .bottom-half-circle::before {
                visibility: visible;
                opacity: 1;
                transition: all 0.3s ease-in-out;
            }

.tk-pedido-emissao-options-list {
    margin-top: 50px;
}

    .tk-pedido-emissao-options-list .panel {
        background-color: #ffffff;
        border-radius: 8px;
        /*height: 60px;*/
        box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    }

    .tk-pedido-emissao-options-list ul {
        margin: 0;
        display: flex;
        flex-direction: row;
        /*height: 100%;*/
    }

        .tk-pedido-emissao-options-list ul li a {
            height: 100%;
            width: 100%;
            text-decoration: none;
            display: block;
            line-height: 60px;
        }

        .tk-pedido-emissao-options-list ul li {
            display: flex;
            flex-grow: 1;
            align-items: center;
            justify-content: center;
            color: #3B3B3B;
            text-align: center;
            cursor: pointer;
            /*padding-left: 40px;
            padding-right: 40px;*/
            font-size: 16px;
            line-height: 18px;
            position: relative;
            transition: all 0.3s ease-in-out;
        }

            .tk-pedido-emissao-options-list ul li:first-of-type {
                border-top-left-radius: 8px;
                border-bottom-left-radius: 8px;
            }

            .tk-pedido-emissao-options-list ul li:not(:last-of-type)::after {
                content: '';
                display: inline-block;
                height: 50%;
                background-color: #E9E9F0;
                width: 1px;
                position: absolute;
                right: 0;
            }

            .tk-pedido-emissao-options-list ul li:last-of-type {
                border-top-right-radius: 8px;
                border-bottom-right-radius: 8px;
            }

            .tk-pedido-emissao-options-list ul li.active,
            .tk-pedido-emissao-options-list ul li:hover {
                background-color: #0052A1;
                color: #ffffff;
                box-shadow: 0px 10px 16px rgba(0,0,0,0.4);
                transition: all 0.3s ease-in-out;
            }

                .tk-pedido-emissao-options-list ul li.active::after,
                .tk-pedido-emissao-options-list ul li:hover::after {
                    background-color: transparent;
                }

.tk-pedido-emissao-panel-bottom {
    margin-top: 30px;
}

    .tk-pedido-emissao-panel-bottom .small-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 42px;
        transition: all 0.3s ease-in-out;
    }

.tk-prod-image-left .prod-text ul li {
    padding: 1rem 0 .5rem 0;
}

    .tk-prod-image-left .prod-text ul li img {
        display: inline-block;
        height: 1.5rem;
        width: auto;
        margin-right: .5rem;
        vertical-align: bottom;
    }


.tk-pedido-emissao-panel-bottom .small-panel > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    width: 160px;
    height: 186px;
    padding-top: 42px;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-right: 14px;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel:hover > div {
    box-shadow: 0px 10px 16px rgba(0,0,0,0.4);
    background-color: #0052A1;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel > div span {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #9FA0A5;
    width: 136px;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel:hover > div span {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel > div svg {
    width: 65px;
    margin-bottom: 20px;
    transition: all 0.1s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel > div:hover svg.registo path.cls-2,
.tk-pedido-emissao-panel-bottom .small-panel > div:hover svg.registo line.cls-2 {
    stroke: #ffffff;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel > div:hover svg.listagem line.cls-2,
.tk-pedido-emissao-panel-bottom .small-panel > div:hover svg.listagem line.cls-3 {
    stroke: #ffffff;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel > div:hover svg.listagem ellipse.cls-4 {
    fill: #ffffff;
    transition: all 0.3s ease-in-out;
}

.tk-pedido-emissao-panel-bottom .small-panel > div:hover svg.historico path.cls-2 {
    stroke: #ffffff;
    transition: all 0.3s ease-in-out;
}

/* LISTAGEM DE PEDIDOS DE EMISSÃO */
.tk-listagem-pedido-emissao-panel {
}

    .tk-listagem-pedido-emissao-panel .inner-panel {
        display: flex;
        flex-direction: row;
        min-height: 252px;
        align-items: center;
        padding-left: 0;
    }

    .tk-listagem-pedido-emissao-panel .tk-first-panel {
        height: 100%;
        display: flex;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.04);
        margin-left: 21px;
        margin-right: 21px;
    }

    .tk-listagem-pedido-emissao-panel .small-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* margin-right: 42px; */
        padding: 0 29px;
    }

.tk-first-panel > .small-panel svg.historico .cls-2 {
    stroke: #0052A1;
}

.tk-aux-panel.small-panel svg.listagem .list-cls-4 {
    stroke: none;
}

.tk-aux-panel.small-panel:hover svg.listagem .list-cls-2,
.tk-aux-panel.small-panel:hover svg.listagem .list-cls-3 {
    color: #3b3b3b;
}

.tk-listagem-pedido-emissao-panel .small-panel > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    width: 160px;
    height: 186px;
    padding-top: 42px;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-right: 14px;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    cursor: pointer;
}

.tk-listagem-pedido-emissao-panel .small-panel:first-of-type > div {
    box-shadow: none;
}

.tk-listagem-pedido-emissao-panel .small-panel > div svg {
    width: 65px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-panel .small-panel > div span {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #9FA0A5;
    width: 136px;
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-panel .small-panel:first-of-type > div span {
    color: #0052A1;
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-panel .small-panel > div:hover span {
    color: #3B3B3B;
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-panel .small-panel > div svg.registo path.cls-2,
.tk-listagem-pedido-emissao-panel .small-panel > div svg.registo line.cls-2,
.tk-listagem-pedido-emissao-panel .small-panel > div svg.historico path.cls-2 {
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-panel .small-panel > div:hover svg.registo path.cls-2,
.tk-listagem-pedido-emissao-panel .small-panel > div:hover svg.registo line.cls-2 {
    stroke: #3B3B3B !important;
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-panel .small-panel > div:hover svg.historico path.cls-2 {
    stroke: #3B3B3B !important;
    transition: all 0.3s ease-in-out;
}

.tk-listagem-pedido-emissao-filtros {
    margin-top: 50px;
}

    .tk-listagem-pedido-emissao-filtros h3 {
        font-size: 15px;
        background: #0052A1;
        color: white;
        font-weight: 500;
        padding: 5px;
        border: 1px solid #0052A1;
        border-radius: 5px;
        height:2em;
    }

.tk-listagem-pedido-emissao-lista {
}

.tk-listagem-detalhe {
}

    .tk-listagem-detalhe .tk-lista-title {
        padding-left: 14px;
        padding-right: 3px;
    }

        .tk-listagem-detalhe .tk-lista-title ul li.li-04 {
            min-width: 200px;
        }

    .tk-listagem-detalhe .tk-lista-column ul li.li-04 {
        min-width: 200px;
    }

.tk-filter-form {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    margin-top: 15px;
}

.tk-filter-group {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 20px;
}

    .tk-filter-group span {
        white-space: nowrap;
    }

    .tk-filter-group input {
        margin-bottom: 0;
        background-color: #ffffff;
        padding-left: 10px;
        margin-left: 10px;
        font-size: 13px;
    }

    .tk-filter-group.user-filter img {
        width: 22px;
    }

    .tk-filter-group.contrb-filter img {
        width: 20px;
    }

    .tk-filter-group.reg-date-filter img {
        width: 20px;
    }

    .tk-filter-group.card-status-filter img {
        width: 20px;
    }

    .tk-filter-group.reg-status-filter img {
        width: 20px;
    }

    .tk-filter-group.reg-status-filter {
        padding-right: 0;
    }

    .tk-filter-group.state-ticket {
        min-width: 330px;
    }

.tk-listagem-pedido-emissao-filtros .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 400;
    font-size: 13px;
    padding-left: 10px;
}

.tk-listagem-pedido-emissao-filtros .select2-container {
    margin-left: 10px !important;
    margin-right: 0px !important;   
    width: auto !important;
   
}

/* listagem pedidos emissão filtros select2 custom */
.tk-filters-select-drop .select2-results__option:last-of-type::before {
    content: none;
    height: 0px;
    background-color: #E9E9F0;
    width: 98%;
    display: block;
    margin-bottom: 0px;
}

.tk-filters-select-drop .select2-results__option:last-of-type {
    padding-top: 6px;
}

.select2-container--open .tk-filters-select-drop.select2-dropdown--below {
    /* padding: 4px 10px; */
    padding: 0px;
    border-radius: 8px;
}

.tk-filters-select-drop .select2-results__option--highlighted[aria-selected] {
    background-color: #E9E9F0;
    color: #3B3B3B;
}

.tk-filters-select-drop .select2-results__option {
    color: #9FA0A5;
    padding: 9px 16px;
}

.select2-container--open .tk-filters-select-drop.select2-dropdown--below:before {
    content: none;
}

.select2-container--open .tk-filters-select-container {
    border: 2px solid #0052A1;
    border-radius: 4px !important;
}

.select2:focus {
    outline: none !important;
}

/* listagem */
.tk-lista-intro {
    font-size: 13px;
    color: #9FA0A5;
    margin: 10px 0px;
}

.tk-lista-wrapper {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    margin-top: 30px;
    padding-bottom: 40px;
    padding-left: 14px;
    padding-right: 14px;
    position: relative;
}

    .tk-lista-wrapper div {
        padding-left: 14px;
        padding-right: 14px;
    }

.tk-lista-title {
    background-color: rgba(0,82,161, 0.1);
    font-size: 12px;
    font-weight: 700;
}

    .tk-lista-title ul,
    .tk-lista-column ul {
        display: flex;
        flex-direction: row;
    }

    .tk-lista-title ul {
        padding-top: 5px;
        padding-bottom: 5px;
        overflow: hidden;
    }

.tk-lista-column {
    font-size: 12px;
    line-height: 1.3;
    margin-left: -14px;
    margin-right: -14px;
    position: relative;
}

    .tk-lista-column > div {
        padding: 0;
        position: relative;
        z-index: 5;
        transition: all 0.3s ease-in-out;
    }

    .tk-lista-column:hover > div ul,
    .tk-lista-column.activeCol > div ul {
        /* box-shadow: 0px 0px 16px rgba(0,10,0,0.4); */
        z-index: 10;
        background-color: rgba(0,82,161, 0.10)
    }

    .tk-lista-column ul {
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        border-bottom: 1px solid rgba(159,160,165, 0.3);
        padding-left: 16px;
        /* padding-right: 16px; */
        width: 100%;
    }

    .tk-lista-column:last-of-type ul {
        border-bottom: none;
    }

    .tk-lista-title ul li,
    .tk-lista-column ul li {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
        padding-right: 5px;
        padding-left: 5px;
        min-width: 0;
    }

.tk-lista-title ul li {
    padding-right: 5px;
}

.tk-lista-column ul li {
    padding-right: 5px;
    position: relative;
}

    .tk-lista-title ul li.li-00,
    .tk-lista-column ul li.li-00 {
        min-width: 84px;
        padding-left: unset;
    }

    .tk-lista-title ul li.li-01,
    .tk-lista-column ul li.li-01 {
        min-width: 84px;
    }

    .tk-lista-title ul li.li-02,
    .tk-lista-column ul li.li-02 {
        min-width: 115px;
    }

        .tk-lista-title ul li.li-02,
        .tk-lista-column ul li.li-02 .date-picker {
            display: flex;
            padding-left: 0px;
        }

            .tk-lista-title ul li.li-02,
            .tk-lista-column ul li.li-02 .date-picker img {
                width: 20px;
                height: 20px;
                margin-right: 10px;
            }

    .tk-lista-title ul li.li-03,
    .tk-lista-column ul li.li-03 {
        min-width: 95px;
    }

    .tk-lista-title ul li.li-04,
    .tk-lista-column ul li.li-04 {
        min-width: 70px;
    }

    .tk-lista-title ul li.li-05,
    .tk-lista-column ul li.li-05 {
        min-width: 68px;
    }

    .tk-lista-title ul li.li-06,
    .tk-lista-column ul li.li-06 {
        min-width: 110px;
    }

    .tk-lista-title ul li.li-07,
    .tk-lista-column ul li.li-07 {
        min-width: 52px;
    }

    .tk-lista-title ul li.li-08,
    .tk-lista-column ul li.li-08 {
        min-width: 115px;
    }

        .tk-lista-title ul li.li-08,
        .tk-lista-column ul li.li-08 .mb {
            height: 32px;
            width: 32px;
            vertical-align: top;
        }

        .tk-lista-title ul li.li-08,
        .tk-lista-column ul li.li-08 .trans {
            height: 50px;
            width: 50px;
            padding-left: 5px;
            vertical-align: top;
        }

        /*.tk-lista-title ul li.li-08,
        .tk-lista-column ul li.li-08 .li-08-ent {
            padding-left:3px;
        }

        .tk-lista-title ul li.li-08,
        .tk-lista-column ul li.li-08 .li-08-ref {
            padding-left: 28px;
        }*/

        .tk-lista-title ul li.li-08,
        .tk-lista-column ul li.li-08 a {
            height: 100%;
            width: 100%;
            text-decoration: none;
            display: block;
        }

    .tk-lista-title ul li.li-09,
    .tk-lista-column ul li.li-09 {
        min-width: 119px;
    }

    .tk-lista-title ul li.li-10,
    .tk-lista-column ul li.li-10 {
        min-width: 55px;
        padding-right: 5px;
    }

    .tk-lista-column ul li.li-11 {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: center;
        background-color: #3B3B3B;
        max-width: 14px;
        height: 60px;
        padding: 0;
        cursor: pointer;
        z-index: 1000;
    }

        .tk-lista-column ul li.li-11:hover {
            z-index: 20;
            background-color: #9FA0A5;
        }

.tk-lista-column.activeCol ul li.li-11 {
    z-index: 20;
    background-color: #0052A1;
}

.tk-lista-column ul li:not(:last-of-type):not(.selectencomendas) span::after {
    display: inline-block;
    content: '';
    background-color: rgba(159,160,165, 0.3);
    height: 36px;
    width: 1px;
    position: absolute;
    right: 0;
    top: 0;
}


.tk-lista-column:nth-of-type(odd) ul {
    background-color: #ffffff;
    overflow: hidden;
}

.tk-lista-column:nth-of-type(even) ul {
    background-color: #F8F8F8;
    overflow: hidden;
}

.tk-card-status-processing span {
    background-color: rgba(255,202,131, 0.2);
    border-radius: 2px;
    padding: 4px 5px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.tk-card-status-processed span {
    background-color: rgba(105,228,166, 0.2);
    border-radius: 2px;
    padding: 4px 5px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.tk-reg-status-inactive span {
    background-color: rgba(255,114,133, 0.2);
    border-radius: 2px;
    padding: 4px 5px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.tk-reg-status-active span {
    background-color: rgba(105,228,166, 0.2);
    border-radius: 2px;
    padding: 4px 5px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.tk-lista-options-menu {
    background-color: #0052A1;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 15;
    padding-right: 0 !important;
    padding-left: 0 !important;
    /* -- */
    visibility: hidden;
    opacity: 0;
}

    .tk-lista-options-menu.show {
        visibility: visible;
        opacity: 1;
    }

    .tk-lista-options-menu ul {
        background-color: #0052A1 !important;
        display: flex;
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 40px;
    }

        .tk-lista-options-menu:hover,
        .tk-lista-options-menu ul:hover {
            box-shadow: none;
        }

        .tk-lista-options-menu ul li {
            color: #ffffff;
            min-height: 41px;
            line-height: 41px;
            padding-left: 40px;
            opacity: 0.5;
            cursor: pointer;
        }

            .tk-lista-options-menu ul li:hover {
                color: rgba(255,255,255, 1);
                opacity: 1;
            }

    .tk-lista-options-menu li.tk-cancel-request {
        background-image: url(../images/svg/cross_icon_white.svg);
        background-repeat: no-repeat;
        background-position: 2px center;
        background-size: 22px;
        width: 100%;
    }

    .tk-lista-options-menu li.tk-download-pdf {
        /*background-image: url(../images/svg/download_icon_white.svg);
        background-repeat: no-repeat;
        background-position: 2px center;
        background-size: 22px;*/
        width: 100%;
        padding-left: 0px;
        display: flex;
    }
    .tk-lista-options-menu li.tk-download {
        background-image: url(../images/svg/download_icon_white.svg);
        background-repeat: no-repeat;
        background-position: 2px center;
        background-size: 22px;
        width: 100%;
    }
        .tk-lista-options-menu li.tk-download-pdf img {
            width: 22px;
            margin-right: 15px;
        }

        .tk-lista-options-menu li.tk-download-pdf a {
            text-decoration: none;
            display: block;
            width: 100%;
            height: 100%;
        }

            .tk-lista-options-menu li.tk-download-pdf a:hover {
                text-decoration: unset;
                color: unset;
                transition: unset;
            }

    .tk-lista-options-menu li.tk-change-request {
        background-image: url(../images/svg/edit_icon_white.svg);
        background-repeat: no-repeat;
        background-position: 2px center;
        background-size: 22px;
        width: 100%;
    }

    .tk-lista-options-menu li.tk-activate-colab {
        background-image: url(../images/svg/activar_colaborador_icon_white.svg);
        background-repeat: no-repeat;
        background-position: 2px center;
        background-size: 22px;
    }

    .tk-lista-options-menu li.tk-remove-colab {
        background-image: url(../images/svg/remover_colaborador_icon_white.svg);
        background-repeat: no-repeat;
        background-position: 2px center;
        background-size: 22px;
    }

/* MODAL - alert */
.tk-lista-wrapper .tk-modal {
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    /* -- */
    visibility: hidden;
    opacity: 0;
    display: block;
}

    .tk-lista-wrapper .tk-modal.show {
        visibility: visible;
        opacity: 1;
        z-index: 100;
    }

.tk-alert {
    width: 415px;
    height: 292px;
    background-color: #ffffff;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 25px 20px 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    visibility: visible;
    opacity: 1;
}

    .tk-alert.hide {
        visibility: hidden;
        opacity: 0;
    }

    .tk-alert .tk-alert-top {
        display: block;
    }

        .tk-alert .tk-alert-top .title {
            font-size: 18px;
            font-weight: 700;
            color: #3B3B3B;
            display: flex;
            align-items: center;
            line-height: 12px;
            margin-bottom: 15px;
        }

        .tk-alert .tk-alert-top .question {
            color: #9FA0A5;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .tk-alert .tk-alert-top .title::before {
            content: url(../images/svg/alert_icon.svg);
            display: inline-block;
            width: 36px;
            margin-right: 10px;
        }

        .tk-alert .tk-alert-top.center {
            display: block;
            margin: 0 auto;
        }

.tk-remove-confirmation {
    width: 415px;
    background-color: #ffffff;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: block;
    padding: 40px 35px 30px 35px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* -- */
    visibility: hidden;
    opacity: 0;
}

    .tk-remove-confirmation.show {
        visibility: visible;
        opacity: 1;
    }

    .tk-remove-confirmation button {
        margin-top: 40px;
    }

    .tk-remove-confirmation .row {
        padding-left: 0;
        padding-right: 0;
    }

        .tk-remove-confirmation .row .tk-form-group {
            padding: 0;
        }

            .tk-remove-confirmation .row .tk-form-group .tk-checkbox-button {
                padding: 0;
            }

.tk-form-remove-colab {
    margin-top: 10px;
}

.tk-remove-confirmation span {
    color: #9FA0A5;
    font-size: 18px;
}


/* PRODUTOS DETALHE */

/* logo top with button */
.tk-prod-top {
    margin-bottom: 40px;
}

    .tk-prod-top img {
        width: 110px;
        float: left;
    }

    .tk-prod-top button {
        float: right;
    }
/* image left block */
.tk-prod-image-left-block {
    margin-bottom: 50px;
    min-height: 305px;
}

.tk-prod-image-left {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
}

    .tk-prod-image-left .prod-img {
        width: 306px;
        height: 306px;
        border-radius: 8px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.20);
        position: absolute;
    }

    .tk-prod-image-left .prod-text {
        display: table;
        background-color: #f8f8f8;
        max-width: 522px;
        width: 100%;
        height: 100%;
        padding: 25px 24px;
        position: relative;
        margin-top: 70px;
        margin-left: 220px;
    }

        .tk-prod-image-left .prod-text .title {
            font-size: 21px;
            font-weight: 700;
            color: #0052A1;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

            .tk-prod-image-left .prod-text .title::before {
                content: '';
                width: 12px;
                height: 12px;
                background-color: #ED1C24;
                border-radius: 50%;
                display: inline-block;
                margin-right: 10px;
            }

        .tk-prod-image-left .prod-text .description {
            font-size: 15px;
            font-weight: 400;
            display: block;
        }
/* text only block */
.tk-prod-text-only-block {
    margin-bottom: 100px;
}

    .tk-prod-text-only-block a {
        font-weight: 700;
    }

    .tk-prod-text-only-block .content {
        margin-left: 3rem;
        padding: 2rem 3rem;
        background: #fff;
    }

    .tk-prod-text-only-block .title {
        font-size: 21px;
        font-weight: 700;
        display: block;
        margin-bottom: 1rem;
        /*margin-left: -6rem;*/
    }

        .tk-prod-text-only-block .title::before {
            content: '';
            width: 12px;
            height: 12px;
            background-color: #ED1C24;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
        }

    .tk-prod-text-only-block .subtitle {
        font-size: 15px;
        font-weight: 700;
        color: #0052A1;
        margin-bottom: 1rem;
    }

    .tk-prod-text-only-block ul {
        margin-bottom: 1.5rem;
    }

        .tk-prod-text-only-block ul li::before {
            content: '';
            width: 4px;
            height: 4px;
            background-color: #ED1C24;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 3px;
        }
/* image right block */
.tk-prod-image-right-block {
    margin-bottom: 100px;
    min-height: 355px;
}

    .tk-prod-image-right-block .col-9 {
        margin-left: 87px;
    }

.tk-prod-image-right {
    display: flex;
    flex-direction: row;
    position: relative;
}

    .tk-prod-image-right .prod-img {
        width: 306px;
        height: 306px;
        border-radius: 8px;
        background-image: url(../images/img/img_produto_2.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.20);
        position: absolute;
        top: 50px;
        right: 0;
    }

    .tk-prod-image-right .prod-text {
        display: table;
        background-color: #ffffff;
        max-width: 522px;
        width: 100%;
        height: 100%;
        padding: 25px 24px;
        position: relative;
    }

        .tk-prod-image-right .prod-text .title {
            font-size: 21px;
            font-weight: 700;
            color: #3B3B3B;
            display: block;
            margin-bottom: 10px;
        }

            .tk-prod-image-right .prod-text .title::before {
                content: '';
                width: 12px;
                height: 12px;
                background-color: #ED1C24;
                border-radius: 50%;
                display: inline-block;
                margin-right: 10px;
            }

        .tk-prod-image-right .prod-text .description {
            font-size: 15px;
            font-weight: 400;
            display: block;
        }

    .tk-prod-image-right button {
        margin-top: 30px;
    }

/* two images block */
.tk-prod-two-images-block {
    margin-bottom: 100px;
    min-height: 455px;
}

.tk-prod-two-images {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
}

    .tk-prod-two-images .image-left {
        width: 306px;
        height: 306px;
        border-radius: 8px;
        background-image: url(../images/img/img_produto_3.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.20);
        position: absolute;
        top: 0;
        left: 0;
    }

    .tk-prod-two-images .image-right {
        width: 306px;
        height: 306px;
        border-radius: 8px;
        background-image: url(../images/img/img_produto_4.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.20);
        position: absolute;
        right: 0;
        top: 150px;
    }

    .tk-prod-two-images .prod-text {
        display: table;
        background-color: #ffffff;
        max-width: 522px;
        width: 100%;
        height: 100%;
        padding: 25px 24px;
        position: relative;
        margin-top: 70px;
        margin-left: 220px;
        z-index: 1;
    }

        .tk-prod-two-images .prod-text .title {
            font-size: 21px;
            font-weight: 700;
            color: #3B3B3B;
            display: block;
            margin-bottom: 10px;
        }

            .tk-prod-two-images .prod-text .title::before {
                content: '';
                width: 12px;
                height: 12px;
                background-color: #ED1C24;
                border-radius: 50%;
                display: inline-block;
                margin-right: 10px;
            }

        .tk-prod-two-images .prod-text .description {
            font-size: 15px;
            font-weight: 400;
            display: block;
        }

        .tk-prod-two-images .prod-text ul li::before {
            content: '';
            width: 4px;
            height: 4px;
            background-color: #ED1C24;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 3px;
        }

/* text on text */
.tk-prod-text-on-text-block,
.tk-prod-text-on-text-block-alt {
    margin-bottom: 80px;
}

    .tk-prod-text-on-text-block .row {
        width: 100%;
    }

.tk-prod-text-on-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

    .tk-prod-text-on-text .prod-text-left {
        color: #0052A1;
        font-size: 26px;
        width: 261px;
        /* position: relative; */
        z-index: 20;
        position: absolute;
        top: 0;
        left: 0;
    }

    .tk-prod-text-on-text .prod-text-right {
        display: table;
        background-color: #ffffff;
        max-width: 741px;
        width: 100%;
        height: 100%;
        padding: 55px 24px 50px 243px;
        position: relative;
        top: 90px;
        left: 87px;
    }

        .tk-prod-text-on-text .prod-text-right .title {
            font-size: 21px;
            font-weight: 700;
            color: #3B3B3B;
            display: block;
            margin-bottom: 10px;
        }

            .tk-prod-text-on-text .prod-text-right .title::before {
                content: '';
                width: 12px;
                height: 12px;
                background-color: #ED1C24;
                border-radius: 50%;
                display: inline-block;
                margin-right: 10px;
            }

        .tk-prod-text-on-text .prod-text-right .subtitle {
            font-size: 15px;
            font-weight: 700;
            color: #3B3B3B;
        }

        .tk-prod-text-on-text .prod-text-right ul {
        }

            .tk-prod-text-on-text .prod-text-right ul li::before {
                content: '';
                width: 4px;
                height: 4px;
                background-color: #ED1C24;
                border-radius: 50%;
                display: inline-block;
                margin-right: 8px;
                margin-bottom: 3px;
            }

/* text on text alt */
.tk-prod-text-on-text-block-alt {
}

    .tk-prod-text-on-text-block-alt .prod-text-right {
        padding: 85px 24px 50px 85px;
    }

    .tk-prod-text-on-text-block-alt .prod-text-left {
        font-size: 21px;
        font-weight: 700;
        color: #3B3B3B;
        display: block;
        margin-bottom: 10px;
    }

    .tk-prod-text-on-text-block-alt .tk-prod-text-on-text .prod-text-left::before {
        content: '';
        width: 12px;
        height: 12px;
        background-color: #ED1C24;
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
    }

    .tk-prod-text-on-text-block-alt .prod-text-right {
        display: table;
        background-color: #ffffff;
        max-width: 741px;
        width: 100%;
        height: 100%;
        padding: 65px 24px 50px 85px;
        position: relative;
        top: -30px;
        left: 87px;
    }

        .tk-prod-text-on-text-block-alt .prod-text-right .title {
            color: #0052A1;
            font-size: 15px;
            font-weight: 700;
            margin-top: 20px;
        }

            .tk-prod-text-on-text-block-alt .prod-text-right .title::before {
                content: none;
            }

/* video block */
.tk-prod-video-block {
    margin-bottom: 200px;
}

.tk-prod-video {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding-left: 0;
}

    .tk-prod-video .video {
        width: 654px;
        max-width: 100%;
    }

    .tk-prod-video .video-container {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.20);
    }

        .tk-prod-video .video-container iframe,
        .tk-prod-video .video-container object,
        .tk-prod-video .video-container embed {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .tk-prod-video .logo {
        width: 219px;
        height: 100px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: #F8F8F8;
        position: absolute;
        right: 0;
        bottom: -40px;
    }

        .tk-prod-video .logo img {
            width: 110px;
        }

/* downloads block */
.tk-prod-downloads-block {
    margin-bottom: 100px;
}

.tk-prod-downloads {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

    .tk-prod-downloads .red-block {
        background-color: #ED1C24;
        min-width: 306px;
        height: 301px;
        margin-left: 87px;
    }

    .tk-prod-downloads .title {
        font-size: 21px;
        font-weight: 700;
        color: #ffffff;
        display: block;
        margin-top: 30px;
        margin-left: 30px;
        margin-right: 30px;
    }

        .tk-prod-downloads .title::before {
            content: '';
            width: 12px;
            height: 12px;
            background-color: #ffffff;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
        }

    .tk-prod-downloads ul {
        background-color: #ffffff;
        padding: 28px 26px;
        position: absolute;
        left: 300px;
        right: 0;
        top: 70px;
    }

        .tk-prod-downloads ul li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            cursor: pointer;
        }

            .tk-prod-downloads ul li::before {
                content: '';
                display: inline-block;
                background-image: url(../images/svg/download_file_icon_black.svg);
                background-repeat: no-repeat;
                width: 18px;
                height: 18px;
                margin-right: 10px;
            }

            .tk-prod-downloads ul li:hover {
                color: #0052A1;
            }

                .tk-prod-downloads ul li:hover::before {
                }

            .tk-prod-downloads ul li span {
                font-size: 16px;
                font-weight: 600;
                width: calc(100% - 30px);
            }
/* slider block */
.tk-prod-slider-block {
    background-color: #ffffff;
    padding: 0px 15px 100px 15px;
}

    .tk-prod-slider-block .title {
        font-size: 21px;
        font-weight: 700;
        color: #3B3B3B;
        display: block;
        margin-bottom: 10px;
        margin-top: 20px;
        text-align: left;
    }

        .tk-prod-slider-block .title:before {
            content: '';
            width: 12px;
            height: 12px;
            background-color: #ED1C24;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
        }

    .tk-prod-slider-block .row {
        position: relative;
    }

.tk-prod-slider-div {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

    .tk-prod-slider-div button {
        top: -25px;
    }

.tk-prod-slider-block .container {
    padding-left: 0;
    padding-right: 0;
}

.tk-prod-slider {
    padding: 30px 40px;
}

    .tk-prod-slider .slick-slide {
        outline: none !important;
    }

        .tk-prod-slider .slick-slide:not(:last-of-type) {
            margin-right: 21px;
        }

.tk-slide-arrows {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: translateY(-50%);
    border-radius: 50%;
}

.tk-slide-arrow-prev {
    left: 0;
}

.tk-slide-arrow-next {
    right: 0;
}

    .tk-slide-arrow-prev:hover svg path,
    .tk-slide-arrow-next:hover svg path {
        stroke: #ED1C24 !important;
    }

.slick-dots {
    right: 0;
    left: 0;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #9FA0A5;
        }

        .slick-dots li:hover button,
        .slick-dots li.slick-active button {
            background-color: #ED1C24;
        }

        .slick-dots li button:before {
            font-family: 'slick';
            font-size: 38px;
            line-height: 10px;
            position: absolute;
            top: 1px;
            left: -1px;
            width: 10px;
            height: 10px;
            content: '•';
            text-align: center;
            opacity: 0;
            color: red;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .slick-dots li button:before {
            opacity: 1;
            color: transparent !important;
        }

/* menu right */
.tk-menu-right {
    background-color: #ffffff;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

    .tk-menu-right ul {
        padding: 90px 30px;
        min-width: 180px;
    }

        .tk-menu-right ul li {
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
        }

            .tk-menu-right ul li:not(:last-of-type):after {
                content: '';
                display: block;
                height: 1px;
                width: 100%;
                background-color: #E9E9F0;
            }

            .tk-menu-right ul li a {
                line-height: 40px;
            }

            .tk-menu-right ul li.active {
                color: #0052A1;
            }

/* PRODUTOS INFO */
.tk-small-card.prod-info:hover .bottom-half-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s all ease-in-out;
}

.tk-small-card.prod-info:hover .card-products-logo {
    width: 110px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    transition: 0.3s top ease-in-out;
}

.tk-small-card.prod-info span {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    font-size: 12px;
    color: #9FA0A5;
}

.tk-small-card.prod-info:hover span {
    visibility: visible;
    opacity: 1;
}

.tk-card-prod-rest {
    background-image: url(../images/img/tb_restaurant@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-card-prod-inf {
    background-image: url(../images/img/tb_infancia@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-card-prod-edu {
    background-image: url(../images/img/tb_educacao@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-card-prod-ens {
    background-image: url(../images/img/tb_ensino@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-card-prod-saude {
    background-image: url(../images/img/tb_saude@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-card-prod-car {
    background-image: url(../images/img/tb_car@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-card-prod-ofr {
    background-image: url(../images/img/tb_oferta@2x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100%;
}

.tk-small-card.prop {
    background-color: transparent;
    border: 3px dashed #9FA0A5;
    font-size: 16px;
    transition: 0.3s all ease-in-out;
}

    .tk-small-card.prop:hover {
        background-color: #ffffff;
        border: none;
        transition: 0.3s all ease-in-out;
        box-shadow: 0px 0px 16px rgba(0,0,0,0.15);
    }

    .tk-small-card.prop svg {
        width: 40px;
        transition: 0.3s all ease-in-out;
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -40%);
    }

    .tk-small-card.prop:hover svg {
        width: 40px;
        position: absolute;
        top: 50px;
        transition: 0.3s all ease-in-out;
    }

        .tk-small-card.prop:hover svg .prop-cls-2 {
            stroke: #ED1C24;
            transition: 0.3s all ease-in-out;
        }

    .tk-small-card.prop span.prop {
        max-width: 100px;
        text-align: center;
        line-height: 1.2;
        margin-top: 5px;
        color: #9FA0A5;
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -60%);
        transition: 0.3s all ease-in-out;
    }

    .tk-small-card.prop:hover span.prop {
        max-width: 100px;
        text-align: center;
        line-height: 1.2;
        margin-top: 5px;
        color: #ED1C24;
        position: absolute;
        top: 100px;
        transition: 0.3s all ease-in-out;
    }

    .tk-small-card.prop span.hidden {
        visibility: hidden;
        opacity: 0;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        position: absolute;
        bottom: 30px;
        line-height: 1.2;
    }

    .tk-small-card.prop:hover span.hidden {
        visibility: visible;
        opacity: 1;
    }

.tk-products-grid .card-svg {
    background-size: 185px;
    background-position: center;
    background-color: #ffffff;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: 0.3s all ease-in-out;
}

    .tk-products-grid .card-svg.t-restaurant-svg {
        background-image: url(../images/svg/t_restaurant_icon.svg);
    }

    .tk-products-grid .card-svg.t-infancia-svg {
        background-image: url(../images/svg/t_infancia_icon.svg);
    }

    .tk-products-grid .card-svg.t-educacao-svg {
        background-image: url(../images/svg/t_educacao_icon.svg);
    }

    .tk-products-grid .card-svg.t-ensino-svg {
        background-image: url(../images/svg/t_ensino_icon.svg);
    }

    .tk-products-grid .card-svg.t-saude-svg {
        background-image: url(../images/svg/t_saude_icon.svg);
    }

    .tk-products-grid .card-svg.t-car-svg {
        background-image: url(../images/svg/t_car_icon.svg);
    }

    .tk-products-grid .card-svg.t-oferta-svg {
        background-image: url(../images/svg/t_oferta_icon.svg);
    }

.tk-products-grid .tk-small-card:hover .card-svg {
    opacity: 0.2;
    transition: 0.3s all ease-in-out;
}

.tk-products-grid .card-products-logo {
    width: 110px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    transition: 0.3s all ease-in-out;
}

/* NOTICIAS */
.tk-noticias-grid {
}

.tk-small-card.noticia {
    box-shadow: 0px 0px 16px rgba(0,10,0,0.15);
}

    .tk-small-card.noticia .card-photo {
        background-image: url(../images/img/img_produto_1@2x.png);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        height: 100%;
    }

    .tk-small-card.noticia .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background-color: #0052A1;
        opacity: 0;
        transition: 0.3s all ease-in-out;
    }

.tk-noticias-date {
    width: 100%;
    font-weight: 600;
    font-size: 12px;
    color: #9FA0A5;
    text-align: left;
    margin-top: 10px;
}

.tk-noticias-title {
    width: 100%;
    font-weight: 700;
    font-size: 21px;
    color: #3B3B3B;
    text-align: left;
    line-height: 1.3;
}

.tk-noticias-description {
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: #9FA0A5;
    text-align: left;
}

.tk-noticias-grid .small-card:hover .tk-small-card.noticia {
    box-shadow: 0px 10px 16px rgba(0,10,0,0.4);
}

    .tk-noticias-grid .small-card:hover .tk-small-card.noticia .overlay {
        opacity: 0.3;
        transition: 0.3s all ease-in-out;
    }

.tk-noticias-grid .small-card:hover .tk-noticias-title {
    color: #0052A1;
}

/* HOMEPAGE */
.tk-homepage-grid {
}

    .tk-homepage-grid .tk-small-card {
        background-color: #ffffff;
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        word-wrap: break-word;
        background-clip: border-box;
        border-radius: 0.25rem;
        width: 219px;
        height: 252px;
        overflow: hidden;
        padding-bottom: 30px;
        padding-left: 10px;
        padding-right: 10px transition: 0.3s all ease-in-out;
        box-shadow: 0px 0px 16px rgba(0,0,0,0.16);
    }

        .tk-homepage-grid .tk-small-card:hover {
            background-color: #0052A1;
            box-shadow: 0px 10px 16px rgba(0,0,0,0.4);
        }

        .tk-homepage-grid .tk-small-card .tk-empresa-svg {
            width: 66px;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .tk-homepage-grid .tk-small-card:hover svg .emp-cls-2 {
            fill: #ffffff;
        }

        .tk-homepage-grid .tk-small-card .tk-client-number {
            color: #0052A1;
            font-size: 15px;
            padding-top: 20px;
        }

        .tk-homepage-grid .tk-small-card .tk-client-name {
            color: #0052A1;
            font-weight: 700;
            font-size: 22px;
            max-width: 100%;
            text-align: center;
            margin-top: 2em;
        }

        .tk-homepage-grid .tk-small-card:hover .tk-client-number,
        .tk-homepage-grid .tk-small-card:hover .tk-client-name {
            color: #ffffff;
        }

.contactos-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #0052A1;
}


/* SIGN-IN */
.tk-sign-in {
    display: flex;
    flex-direction: row;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tk-sign-in-left {
    width: 50%;
}

    .tk-sign-in-left .logo {
        max-height: 937px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

.tk-sign-in-right {
    background-color: #ffffff;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tk-sign-in-middle {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .tk-sign-in-middle .tk-sign-in-inner-wrapper {
        margin-left: unset;
    }

.tk-sign-in-inner-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin-top: 30px;
    margin-left: 10%;
    margin-right: 10%;
}

    .tk-sign-in-inner-wrapper .logo {
        width: 190px;
        margin-top: 5%;
        margin-bottom: 5%
    }

.tk-form-sign {
    width: 100%;
}

    .tk-form-sign .tk-form-group {
        width: 100%;
        margin-top: 10px;
    }

.group-show-password {
    margin-bottom: 15px;
}

    .group-show-password span {
        margin-left: 8px;
    }

    .group-show-password #show-password {
        height: 18px;
        width: 18px;
        top: 4px;
        position: relative;
    }

.tk-form-submit-button {
    margin-top: 8%;
}

    .tk-form-submit-button button {
        margin: 0 auto;
    }

span.tk-recover-password {
    font-size: 14px;
    color: #9FA0A5;
    margin-top: 6px;
}

.tk-sign-in-welcome {
    font-weight: 700;
    font-size: 35px;
    color: #0052A1;
}

.tk-sign-in-subtext {
    color: #9FA0A5;
    font-size: 16px;
}

.tk-sign-in-highlight {
    color: #4276af;
    font-size: 15px;
    font-weight: 700;
}

.tk-form-sign input {
    font-size: 18px;
}

    .tk-form-sign input::placeholder {
        color: #9FA0A5;
    }

.tk-signin-contacts {
    position: relative;
    margin-top: 20px;
    display: inline-grid;
}

.tk-signup-teaser {
    position: relative;
    margin-top: 20px;
}

.tk-sign-up-right {
    background-color: #ffffff;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tk-form-signup-policy {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 20px;
    -ms-flex: 0 0 auto;
    padding-left: 21px;
    padding-right: 21px;
}

    .tk-form-signup-policy .labelForm {
        margin-left: .5rem;
        margin-right: unset;
        font-size: 12px;
    }

.tk-form-signup-actions {
    margin-top: 1rem;
}

    .tk-form-signup-actions button {
        text-align: initial;
        min-width: 50px;
        padding-left: unset;
    }


/* MOBILE HEADER */
.tk-mobile-menu-button {
    display: none;
}
/* MOBILE MENU */
.tk-mobile-menu {
    background-color: #0052A1;
    margin-top: 70px;
    height: calc(100vh - 70px);
    width: 100%;
    position: absolute;
    z-index: 1000;
    /* -- */
    /*visibility: hidden;
	opacity: 0; */
    top: -130%;
    transition: top 0.3s ease-in-out;
}

    .tk-mobile-menu.show {
        /*visibility: visible;
	    opacity: 1; */
        top: 0;
        transition: top 0.3s ease-in-out;
    }

    .tk-mobile-menu ul {
        margin-top: 30px;
    }

    .tk-mobile-menu .tk-menu-item a {
        display: inline-block !important;
        color: #ffffff;
        opacity: 0.5;
    }

.tk-simple-button-centered {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.tk-prod-text-on-text-block .tk-simple-button {
    z-index: 20;
    position: absolute;
    top: 250px;
    left: 0;
}

.tk-red-bold {
    color: #ED1C24;
    font-weight: 900;
}

strong {
    font-weight: 900;
}

.campoObrigatorio {
    padding: 20px;
    font-size: 0.8em;
    padding-left: 0;
    padding-bottom: 0px;
}

.tk-detalhe-pagamento {
    margin-bottom: 1rem;
}

    .tk-detalhe-pagamento h4 {
        margin-bottom: .5rem;
        margin-top: 1rem;
    }

.tk-group-ref-mb {
    margin-bottom: 2rem;
}

    .tk-group-ref-mb h4 span {
        margin-left: .3rem;
    }

.tk-group-ref-mb-adesao {
    margin-bottom: 2rem;
}

    .tk-group-ref-mb-adesao p {
        margin-left: .3rem;
        margin-top: 1rem;
    }

.tk-group-transf {
    margin-bottom: 2rem;
}

    .tk-group-transf h4 span {
        margin-left: .3rem;
    }

.tk-detalhe-pagamento p {
    margin-left: 20%;
    margin-right: 20%;
}

.tk-footer-pagamento {
    margin-top: 1rem;
}


.container.termsconditions h1 {
    padding-bottom: 2rem;
    padding-top: 1.5rem;
}

.container.termsconditions h2 {
    padding-bottom: 1rem;
    padding-top: 1.5rem;
}

.container.termsconditions h3 {
    padding-bottom: 1rem;
}

.container.termsconditions p {
    padding-top: 1rem;
}

    .container.termsconditions p + p {
        text-indent: unset;
    }

.container.termsconditions ul {
    margin-left: 2rem;
}

.container.termsconditions form {
    padding-bottom: 5rem;
}

.container.termsconditions .tk-form-submit-button {
    margin-top: 2rem;
}

.order_text_morada {
    margin-top: 0px;
}

.order_local {
    margin: 0 !important;
}

.select2-results__option {
    margin-top: 0px;
}

.tk-filter-group.reg-date-filter {
    max-width: 170px;
}


div.fadeMe {
    opacity: 0.5;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    top: 0;
    left: 0;
    position: fixed;
    /*display: none;*/
}

.lds-dual-ring {
    position: absolute;
    left: 50%;
    top: 300px;
    display: inline-block;
    width: 80px;
    height: 80px;
    z-index: 99999999;
    /*display: none;*/
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-tooltip-styling {
    padding-left: 10px;
    padding-right: 10px;
    width: 150px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.custom-tooltip-styling2 {
    padding-left: 10px;
    padding-right: 10px;
    width: 350px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}


.ui-tooltip, .arrow:after {
    position: absolute;
    z-index: 999;

}

#toggle-price-details {
    width: 59%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.pagination {
    display: inline-block;
}

.pagination a {
color: black;
float: left;
padding: 5px 16px;
text-decoration: none;
transition: background-color .3s;
border: 1px solid #ddd;
}

.pagination a.active {
background-color: #0052A1;
color: white;
border: 1px solid #0052A1;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.button-aplly-filter {
    color: #0052A1;
    border: 1px solid #0052A1;
    background-color: #fff;
    height: 35px;
    cursor: pointer;
    border-radius:5px;
}

.button-aplly-filter:hover {
   
    background-color: rgba(0,0,0,0.15);
   
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color:#757575;
}

/*
.button-rounded-link {
    background: #0052A1;
    color: white;
    font-weight: 500;
    padding: 5px 15px 5px 15px;
    border: 1px solid #0052A1;
    border-radius: 5px;
    height: auto;
    cursor:pointer;
    margin-right:2em;
}
@media only screen and (max-width: 600px) {
    .button-rounded-link {
        padding: 5px 10px 5px 10px;
        margin-right: 0.3em;
    }
    */
.btn-primary-2 {
    background-color: #0052A1;
    font-size: 1em;
    height: 3em;
    padding: 0;
}


