@font-face {
    font-family: 'Montserrat';
    src: url('widget/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('widget/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url('widget/Barlow-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url('widget/Barlow-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

#hexago-widget_wrapper {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 75px;
    position: fixed;
    max-width: 380px;
    width: 100vw;
    bottom: 0;
    right: 0;
    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
}

@media (min-width: 576px) {
    #hexago-widget_wrapper {
        bottom: 10px;
        right: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
    }
}

#hexago-widget_wrapper.theme-light {
    background-color: #fff;
    color: #000;
}

#hexago-widget_wrapper #widget__collapsed {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 17px 23px;
}

#hexago-widget_wrapper #widget__collapsed img.main-icon {
    width: 50px;
    margin-right: 8px;
}

#hexago-widget_wrapper #widget__collapsed .title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    max-width: 233px;
    flex-grow: 1;
}

#hexago-widget_wrapper #widget__expanded {
    display: none;
    position: relative;
}

#hexago-widget_wrapper.hexago-widget--open {
    height: 551px;
}

#hexago-widget_wrapper.hexago-widget--open #widget__collapsed {
    display: none;
}

#hexago-widget_wrapper.hexago-widget--open #widget__expanded {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    justify-content: space-between;
    padding: 17px 23px;
}

#hexago-widget_wrapper .hexago-widget {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
}

#hexago-widget_wrapper.hexago-widget--open .hexago-widget {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hexago-widget_wrapper .logo {
    height: 30px;
}
#hexago-widget_wrapper.hexago-widget--open .logo {
    height: 56px;
    width: 224px;
}

#hexago-widget_wrapper.hexago-widget--open .logo.logo-wrapper {
    margin-left: auto;
    margin-right: auto;
}

#hexago-widget_wrapper .logo img {
    height: 100%;
}

#hexago-widget_wrapper .logo img.small-logo {
    filter: invert(59%) sepia(23%) saturate(3634%) hue-rotate(355deg) brightness(100%) contrast(102%);
}

#hexago-widget_wrapper .logo img.brand-logo {
    width: 200px;
    overflow: hidden;
}
#hexago-widget_wrapper.hexago-widget--open .logo img.brand-logo {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#hexago-widget_wrapper .details {
    width: 100%;
}

#hexago-widget_wrapper .details .link-wrapper {
    background-color: #ee7203;
    border-radius: 0 0 16px 16px;
    transition: background-color 0.15s ease;
}

#hexago-widget_wrapper .details .link-wrapper .btn-link {
    color: #000;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 23px;
    transition: color 0.15s ease;
}

#hexago-widget_wrapper .details .link-wrapper:hover {
    background-color: #000;
}

#hexago-widget_wrapper .details .link-wrapper:hover .btn-link {
    color: #fff;
}

#hexago-widget_wrapper #widget__expanded img.main-icon {
    height: 128px;
}

#hexago-widget_wrapper #widget__expanded .title {
    align-self: center;
    max-width: 270px;
    text-wrap: wrap;
    color: #ee7203;
    font-size: 30px;
    font-weight: 600;
}

#hexago-widget_wrapper .details .features {
    background-color: #fdfaee;
    border-radius: 16px 16px 0 0;
    text-align: left;
    padding: 23px;
}

#hexago-widget_wrapper .details .features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
}

#hexago-widget_wrapper .details .features li {
    display: flex;
}

#hexago-widget_wrapper .details .features .icon {
    width: 18px;
}

#hexago-widget_wrapper .details .features li + li {
    margin-top: 14px;
}