﻿/* 
   Font Family
*/
@font-face {
    font-family: "Gotham SSm A";
    src: url("fonts/gotham/Gotham-Book.woff2") format("woff2"), url("fonts/gotham/Gotham-Book.woff") format("woff");
}

/* General styling for the container */
.hub-signature__main {
    margin: 0 auto;
}

.signature-genric__container {
    background: #F7F7F7;
}

.signature-genric__container__width {
    max-width: 1280px;
    margin: 0 auto;
}

.hub-signature__header__container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.signature-viu__form__container {
    margin-bottom: 50px;
}

/* Logo container styling */
.hub-signature__logo__container .hub-signature__logo {
    width: 104px;
    height: 32px;
}

/* Tab panel container */
.hub-signature__tab-panel__container {
    display: flex;
    min-width: 423px;
    justify-content: space-between;
}

/* Tab styling */
.hub-signature__tab-panel div {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    border-radius: 4px 4px 0 0;
    transition: background-color 0.3s ease;
    position: relative; /* Ensure the position is relative so we can add the border */
}

/* Hover effect for tabs */
.hub-signature__tab-panel div:hover {
        background-color: #ddd;
}

.hub-signature__general__container {
    padding-bottom: 30px;
}

.hub-signature__tabs {
    cursor: pointer;
    font-weight: 325;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #263746;
    position: relative;
    text-decoration: none;
}

.hub-signature__tabs:hover::after,
.hub-signature__tabs.active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px; /* Move it down 10px from the text */
        height: 3px; /* The height of the shadow */
        background-color: transparent; /* Default state */
        transition: background-color 0.3s; /* Smooth transition */
        background-color: #0167ba;
        border-radius: 10px;
}

/* Body container styling for tab content */
.hub-signature__body__container {
    width: 100%;
    background: #F7F7F7;
}

.hub-signature__body__container__main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Panel content hidden by default */
.panel {
    display: none;
}

/* Active panel visible */
.panel-active {
    display: flex;
}

.signature-col {
    width: 50%;
}


/* Signature Title*/

.signature-title__container {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 50px;
}

.signature-title {
    font-size: 50px;
    font-style: normal;
    font-weight: 325;
    color: #263746 ;
}

.signature-title__bold {
    font-weight: bold;
}

/* Toggle */

.toggle-container {
    overflow: hidden;
    display: inline-block;
    background-color: #fff;
    border-radius: 30px;
    margin-bottom: 70px;
}

    .toggle-container a {
        position: relative;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        border-radius: 30px;
        border: 3px solid #fff;
        padding: 15px 50px;
        transition: 0.3s;
        font-weight: 325;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: -0.33px;
        text-align: center;
        background: #fff;
        color: #263746;
        text-decoration: none;
        font-weight: 325;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
}

.toggle-container  a.active {
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: -0.33px;
        text-align: center;
        color: #FFF;
    }

.toggle-container a.active {
            z-index: 2;
            background: #2c3e50;
            color: white;
            font-weight: 400;
            font-size: 18px;
            line-height: 100%;
            letter-spacing: -0.33px;
            text-align: center;
}


.toggle-container a.activet {
            z-index: 2;
            background: #2c3e50;
            color: white;
            font-weight: 400;
            font-size: 18px;
            line-height: 100%;
            letter-spacing: -0.33px;
            text-align: center;
}


.toggle-container a.activet {
           color: #fff;
}

.signature-personal-details__form__title {
    font-weight: 350;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #0167BA;
}

form {
    max-width: 420px;
}

.signature-personal-details__form__label {
    font-weight: 350;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: #6E6E6E;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 420px;
}

.form-group-30 {
    width: 30%;
}

.form-group__two {
    display: flex;
    gap: 10px;
}

form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 325;
    line-height: 20px;
    height: 46px;
}

/*Custom Select*/

.styleSelect {
    overflow: hidden;
    background: #fff url("images/Chevron.png") no-repeat right 16px center;
}

.styleSelect select {
    appearance: none;
    background: transparent;
}


textarea {
    height: 100px; /* Adjusts the height of the textarea */
    resize: vertical; /* Allows vertical resizing */
}

/* radio */
.radio-options {
    display: flex;
    gap: 1rem;
}

    .radio-options label {
        display: flex;
        align-items: center;
        gap: 1rem;
        border: 2px solid transparent;
        background: #fff;
        padding: 0.8rem;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.3s ease;
        position: relative;
    }

    .radio-options input[type="radio"] {
        display: none;
    }

        .radio-options input[type="radio"]:checked + label {
            border: 2px solid #0077c8;
        }

        .radio-options input[type="radio"]:checked + label svg path {
                fill: #0167BA;
        }


        .radio-options input[type="radio"]:not(:checked) + label svg path {
            fill: #263746A6; /* Default color, replace with your desired default color */
        }

    .radio-options label::after {
        content: '';
        width: 1rem;
        height: 1rem;
        border: 1.5px solid #555;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .radio-options input[type="radio"]:checked + label::after {
        background-image: url('data:image/svg+xml;utf8,<svg fill="%230077c8" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M20.292 5.709l-11.5 11.5-5.5-5.5L4.707 10.3l4.085 4.085L18.88 5.707z"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-color: #fff;
        border: 1.5px solid #555;
    }

.radio-options input[type="radio"]:checked + label::after {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230077c8" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M20.292 5.709l-11.5 11.5-5.5-5.5L4.707 10.3l4.085 4.085L18.88 5.707z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    border: 1.5px solid #555;
}

    .radio-options label span {
        font-weight: bold;
        color: #555;
    }

    .radio-options input[type="radio"]:checked + label span {
        color: #0077c8;
    }


/* toggle */
.theme-toggle {
    font-weight: bold;
    text-align: center;
}

#mode-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #231F20;
}

.switch {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 34px;
    width: 100%;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

.theme-toggle-checkbox:disabled + .slider {
    filter: grayscale(1) brightness(50%); 
    pointer-events: none; 
}

.slider .icon {
    transition: 0.3s;
}

.sun {
    background: white;
    border-radius: 50%;
    padding: 4px;
}

.moon {
    display: none;
    background: black;
    border-radius: 50%;
    padding: 4px;
}

input:checked + .slider {
    flex-direction: row-reverse;
}

    input:checked + .slider .sun {
        display: none;
    }

    input:checked + .slider .moon {
        display: block;
    }


.signature-viu__double-col {
    display: flex;
    justify-content: space-between;
}


/* signature section */

.signature-section {
    margin-top: 30px;
}

.email-ui {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    font-family: "Gotham SSm A", "Gotham SSm B";
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.signature-email__header {
    background: #263746;
    color: white;
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-header__title {
    color: #B3B3B3;
    font-size: 12px;
}

.email-header .actions span {
    margin-left: 8px;
    cursor: pointer;
}

.email-body {
    background: #fff;
    min-height: 500px;
}

.input-field {
    width: 100%;
    border: 1px solid #ccc;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 3px;
}

.email-content {
    padding: 1rem 0;
}

.email-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo .viu {
    font-weight: bold;
    color: #f57c00;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo .by-hub {
    display: block;
    color: #1d3b50;
    font-size: 0.75rem;
}

.divider {
    width: 1px;
    height: 40px;
    background: #ccc;
}

.social-icons img {
    margin-right: 8px;
    cursor: pointer;
}

.signature-email__footer {
    display: flex;
    justify-content: space-between;
    background: #F2F2F2;
    padding: 0.5rem 1.5rem;
    align-items: center;
}

.footer-icons span {
    margin-right: 10px;
    cursor: pointer;
}

/* button */
.copy-btn {
    background-color: #0167BA;
    color: white;
    padding: 10px 20px;
    border: none;
    min-width: 140px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-btn__container {
    margin: 45px 0;
    text-align: center;
}

.copy-btn:hover {
    background-color: #0167BA;
}

/* icons */

.signature-footer__icons {
    display: flex;
    gap: 10px;
}

.signature-text__icon {
    width: 23px;
    height: 24px
}

.signature-image__icon {
    width: 24px;
    height: 22px
}

.signature-emoj__icon {
    width: 24px;
    height: 24px
}

.signature-delete__icon {
    width: 19px;
    height: 24px;
}

.signature-attach__icon {
}

.signature-email__inputs {
    background-color: #fff;
    border-radius: 10px;
    min-height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}


.signature-email__inputs__container {
    background: #F2F2F2;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 14px 12px;
}

.signature-email__inputs__texts {
    color: #B3B3B3;
}

.signature-email__content {
    padding: 1rem 1.5rem;
}

.signature-section__divider {
    color: #CCCCCC;
    margin-bottom: 45px;
}

/* instruction box */

.signature-instruction__box {
    background: white;
    padding: 44px 38px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 45px;
}

.signature-instruction__title {
    color: #0167BA;
    font-size: 30px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    letter-spacing: -0.3px;
}

.signature-instruction__box h2 {
        color: #0167BA;
        font-size: 30px;
        font-style: normal;
        font-weight: 350;
        line-height: normal;
        letter-spacing: -0.3px;
}

.signature-instruction__box h2 span {
            color: #0167BA;
            font-size: 16px;
            font-style: normal;
            font-weight: 350;
            line-height: normal;
            letter-spacing: -0.16px;
}

.signature-instruction__box ol {
        list-style: none;
        padding-left: 0;
}

.signature-instruction__box ol li {
        display: flex;
        margin-bottom: 16px;
        color: #263746;
        font-size: 18px;
        font-style: normal;
        font-weight: 325;
        line-height: 28px; 
        letter-spacing: -0.36px;
}


.custom-ol {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
}

.custom-ol li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1em;
}

.custom-ol {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
}

    .custom-ol li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1em;
    }

        .custom-ol li .circle {
            counter-increment: step;
            content: counter(step);
            background: #0167BA;
            color: #FFF;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; 
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 12px;
        }


.signature-instruction__title {
    font-family: "Gotham SSm A", "Gotham SSm B";
    font-weight: 350;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #0167BA;
}

* {
    box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

html {
    font-size: 16px;
}

ol, ul {
    margin: 0;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.no-support {
    display: none;
    margin-bottom: 30px;
    color: #167bd4;
}

    .no-support a {
        color: #167bd4;
    }

    .no-support.active {
        display: block;
    }

ol.layout, ul.layout, li.layout, ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent none no-repeat 0 0;
}

input {
    margin: 0;
}

button {
    position: relative;
    cursor: pointer;
    overflow: visible;
}

    button::-moz-focus-inner {
        border: none;
    }

    button span {
        position: relative;
        display: block;
        white-space: nowrap;
    }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    button span {
        margin-top: -1px;
    }
}

a img {
    vertical-align: middle;
}

.nowrap {
    white-space: nowrap;
}

.brand {
    white-space: nowrap;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

abbr, article, aside, canvas, footer, header, hgroup, mark, menu, meter, nav, section, time {
    display: block;
}

input[type='submit'], input[type='button'] {
    cursor: pointer;
}

sup, sub {
    height: 0;
    line-height: 1;
    font-size: 80%;
    position: relative;
    left: .1ex;
    vertical-align: baseline;
    _vertical-align: bottom;
}

/** 
 * Typography
 * -------------------------------------------------- */
body {
    line-height: 1;
    font-family: "Gotham SSm A", "Gotham SSm B";
    color: #263845;
}

h1, h2 {
    color: #263845;
    font-weight: normal;
}

h1 {
    font-size: 32px;
    margin: 0 0 30px;
}

h2 {
    font-size: 26px;
    padding-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 11px;
}

h4 {
    margin-bottom: 20px;
}

/** 
 * Layout
 * -------------------------------------------------- */
#page {
    max-width: 740px;
    margin: 0 auto;
}


.preview-pull-down {
    margin-top: 16em;
}

    .preview-pull-down.cal_lic_hub {
        margin-top: 0 !important;
    }

.instructions > p {
    width: 450px;
}

.instructions > ol {
    margin-bottom: 40px;
}

.instructions li {
    margin-bottom: 7px;
    font-size: 14px;
}

.wininstructions > p {
    width: 450px;
}

.wininstructions > ol {
    margin-bottom: 40px;
    line-height: initial;
}

.wininstructions li {
    margin-bottom: 7px;
    font-size: 14px;
}

.macinstructions > p {
    width: 450px;
}

.macinstructions > ol {
    margin-bottom: 40px;
    line-height: initial;
}

.macinstructions li {
    margin-bottom: 7px;
    font-size: 14px;
}

.instructions-windows > p {
    width: 450px;
}

.instructions-windows > ol {
    margin-bottom: 28px;
}

.instructions-windows li {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 18px;
}

.instructions-mac > p {
    width: 450px;
}

.instructions-mac > ol {
    margin-bottom: 28px;
}

.instructions-mac li {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 18px;
}

.instructions-citrix > p {
    width: 450px;
}

.instructions-citrix > ol {
    margin-bottom: 28px;
}

.instructions-citrix li {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 18px;
}

fieldset input, fieldset select, fieldset textarea {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 4px 6px;
    border-radius: 3px;
    width: 100%;
    font-size: 13px;
}

    fieldset input[type="radio"] {
        width: auto;
        display: inline;
    }

fieldset textarea {
    font-family: "Gotham SSm A", "Gotham SSm B";
    min-height: 60px;
}

fieldset label {
    font-size: 11px;
    font-weight: bold;
    color: #167bd4;
    display: block;
    margin-bottom: 5px;
}

    fieldset label.label-radio {
        cursor: pointer;
        font-weight: normal;
        font-size: 13px;
        color: #263845;
    }

fieldset .row {
    width: 300px;
}

    fieldset .row > [class*='col-'] {
        float: left;
    }

fieldset .col-3 {
    width: 30%;
}

fieldset .col-5 {
    width: 50%;
}

fieldset .col-7 {
    width: 70%;
}

.col-6 {
    width: 50%;
}

.pull-right {
    float: right;
}

    .pull-right.viu {
        margin-top: 280px;
    }

    .pull-right.cal_lic {
        margin: unset;
    }

@media (max-width: 822px) {
    .pull-right {
        float: none;
    }
}

.pl-1 {
    padding-left: 10px;
}

.pr-1 {
    padding-right: 10px;
}

.pl-2 {
    padding-left: 20px;
}

.pr-2 {
    padding-right: 20px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

input::-webkit-input-placeholder {
    color: #999 !important;
}

input:-moz-placeholder {
    color: #999 !important;
}

input::-moz-placeholder {
    color: #999 !important;
}

input:-ms-input-placeholder {
    color: #999 !important;
}

select {
    color: #263746;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
}

    select.selected {
        color: #263845;
    }

    select option,
    select optgroup {
        color: #263845;
    }

        select option.disabled {
            color: #999;
        }

.preview p {
    margin: 0 0 10px 0;
}


/*Error border form form fields*/
.form-group .ng-dirty.ng-invalid {
    border: 1.5px solid #AC1534;
}

.form-error_message {
    color:  #AC1534;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: normal;
    margin-top: 12px;
}

.ng-invalid::-ms-clear,
.ng-valid::-ms-clear {
    display: none;
}

.header {
    max-width: 740px;
    margin-bottom: 20px;
    margin: 0 auto 30px;
    height: 48px;
    line-height: 48px;
    text-align: center;
}

    .header img {
        max-width: 153px;
        float: left;
    }

    .header h1 {
        /*float: right;*/
        vertical-align: top;
        display: inline-block;
    }

    .header .language-switcher {
        display: inline-block;
        float: right;
        position: relative;
        align-items: center;
    }

    .header .language-list-item {
        display: inline-block;
        padding: 0 5px;
    }

        .header .language-list-item a {
            color: rgba(0, 0, 0, 0.7);
            position: relative;
            display: block;
            text-decoration: none;
            line-height: 1.25;
        }

            .header .language-list-item a:after {
                content: '';
                background: rgba(0, 0, 0, 0.7);
                width: 1px;
                height: 16px;
                position: absolute;
                right: -8px;
                top: 1px;
            }

            .header .language-list-item a:hover {
                border-bottom: 2px solid #167bd4;
            }

        .header .language-list-item:last-of-type a:after {
            display: none !important;
        }

        .header .language-list-item.active a {
            font-weight: bold;
        }

        .header .language-list-item:before {
            display: none;
        }

.copy-button, .copy-button-grey {
    background-color: #0167BA;
    color: #fff;
    height: 48px;
    min-width: 140px;
    line-height: 16px;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 350;
    border: 0;
    font-size: 16px;
}

.copy-button:hover {
    background-color: #02579C;
    border-radius: 40px;
}

.copy-button:active {
    background-color: #01457C;
}

.copy-button:focus {
     background-color: #0167BA;
     outline: 1px solid #0167BA;
     outline-offset: 3px;
}

.copy-button-grey {
    background-color: #E3E3E3;
    color: #757584;
}

.copy-button-grey:hover {
    background-color: #E3E3E3;
    color: #757584;
}

.copy-modal, .copy-modal-grey {
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
}

    .copy-modal .copy-modal-container, .copy-modal-grey .copy-modal-container {
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        background-color: #fff;
        box-shadow: 0 0 1px #001b30;
        left: 0;
        margin: 0 auto;
        padding: 23px;
        position: absolute;
        right: 0;
        text-align: center;
        top: 50%;
        width: 50%;
        border-radius: 3px;
        opacity: 0;
        z-index: 10;
    }

        .copy-modal-grey .copy-modal-container p, .copy-modal .copy-modal-container p {
            font-size: 22px;
            line-height: 1.25;
        }

form.ng-dirty.ng-valid {
    background-image: none !important;
}

form.ng-dirty.ng-invalid {
    background-image: none !important;
}

.sig-copy {
    height: 1px;
    margin-top: -25px;
    overflow: hidden;
}

.clearfix:after, fieldset .row:after {
    content: " ";
    display: block;
    clear: both;
}

.hidden {
    display: none;
}

.btn {
    text-align: center;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 0;
    background-color: #ccc;
}

    .btn.active {
        background-color: #167bd4;
        color: white;
    }

#disclaimer a {
    color: #0678D5;
}


