@keyframes stampedFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100vh);
    }
    100% {
        transform: translateY(0);
    }
}

.stamped-widget-frame {
    border: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    outline: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.stamped-widget-frame-container {
    border: 0;
    height: calc(100% - 120px);
    max-height: 600px;
    outline: 0;
    overflow: hidden;
    position: fixed;
    width: 360px;
    z-index: 9998;
    box-shadow: 0 0 80px 20px rgb(0 0 0 / 10%);
}

.stamped-widget-frame-container.stamped-widget-frame-container-open{
    -webkit-animation: stampedFade .2s ease-in !important;
    animation: stampedFade .2s ease-in !important;
    -webkit-animation-delay: .15s !important;
    animation-delay: .15s !important;
    transition: all .4s ease-in-out !important;
}

.stamped-widget-frame-container.stamped-widget-frame-container-closed{
    -webkit-animation: stampedFade .2s ease-in !important;
    animation: stampedFade .2s ease-in !important;
    -webkit-animation-delay: .15s !important;
    animation-delay: .15s !important;
    transition: all .4s ease-in-out !important;
}

.stamped-widget-frame-container::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.stamped-widget-frame-container.stamped-widget-border-radius-rounded {
    border-radius: 10px;
}

.stamped-launcher-frame-container {
    border: 0;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
    height: 60px;
    outline: 0;
    position: fixed;
    overflow: hidden;
    z-index: 9997;
}

@media only screen and (max-width: 450px) {
    .stamped-widget-frame-container {
        border-radius: 0 !important;
        /*height: 100% !important;*/
        left: 0 !important;
        max-height: 100vh !important;
        max-width: 100vw !important;
        right: 0 !important;
        top: 0 !important;
        width: 100% !important;
        transform: translateY(100vh)
    }
}

.background-primary {
    background-color: var(--header-bg-color, #000000);
}

.stamped-widget-launcher-container {
    color: var(--header-text-color, #000000);
    cursor: pointer;
    height: 60px;
    min-width: 60px;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: center;
    font-family: Roboto, sans-serif;
    letter-spacing: 0.2px
}

.stamped-widget-launcher-container.launcher-open .launcher-content-container {
    -webkit-animation: fadeOutNoDisplay .2s ease;
    animation: fadeOutNoDisplay .2s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.stamped-widget-launcher-container .launcher-content-container {
    align-items: center;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.stamped-widget-launcher-container.stamped-widget-border-radius-circular {
    border-radius: 30px;
}

.stamped-widget-launcher-container.stamped-widget-border-radius-rounded {
    border-radius: 10px;
}

.stamped-widget-launcher-container .launcher-icon-container{
    display: flex;
    align-items: center;
}

/*
 * Styles for desktop only
 */
@media screen and (min-width: 451px){
    /*Hide the icon or text on desktop if checked*/
    .stamped-launcher-frame-container.hide-icon-on-desktop .launcher-icon-container,
    .stamped-launcher-frame-container.hide-text-on-desktop .launcher-text{
        display: none;
    }
}

.stamped-launcher-frame-container.stamped-launcher-open {
    position: fixed;
    /*box-shadow: 0 0 80px 20px rgb(0 0 0 / 10%);*/
    width: 60px !important;
}

.launcher-button {
    background-color: transparent;
    border: none;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    font: inherit;
    margin: 0;
    outline: none;
    padding: 0;
    text-align: left;
    text-align: inherit;
    width: 100%;
}

.stamped-widget-launcher-container.launcher-closed .launcher-content-container, .stamped-widget-launcher-container.launcher-open .launcher-close-icon {
    -webkit-animation: fadeIn .2s ease;
    animation: fadeIn .2s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.stamped-widget-launcher-container .launcher-content-container {
    align-items: center;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.stamped-widget-launcher-container .launcher-icon {
    height: 28px;
    width: 28px;
    margin-right: 12px;
    color: var(--header-text-color, #000000);
    fill: var(--header-text-color, #000000);
}

.stamped-widget-launcher-container .launcher-text {
    color: inherit;
    font-size: 16px;
    line-height: 30px;
    white-space: nowrap;
}

.stamped-launcher-frame-container.stamped-launcher-border-radius-circular {
    border-radius: 9px;
}

.stamped-widget-launcher-container .launcher-close-icon {
    display: none;
    bottom: 0;
    height: 26px;
    padding: 6px;
    position: relative;
    width: 26px;
}

.stamped-widget-frame-container-closed {
    height: 0;
    opacity: 0;
}

@media (max-width:450px){
    .stamped-widget-frame-container-open {
        height: 100vh;
        transform: translateY(0);
        -webkit-animation: slideUp .25s linear !important;
        animation: slideUp .25s linear !important;
    }
    .stamped-launcher-frame-container.hide-icon-on-mobile .launcher-icon-container,
    .stamped-launcher-frame-container.hide-text-on-mobile .launcher-text
    {
        display: none;
    }
    .stamped-launcher-frame-container.hide-text-on-mobile .launcher-icon-container{
        margin-left: 12px;
    }

    .stamped-launcher-frame-container.hide-text-on-mobile{
       width: auto !important;
    }

    .stamped-launcher-open .stamped-launcher-frame-container.hide-text-on-mobile .launcher-icon-container{
        margin-left: 0;
    }
}

.stamped-launcher-open .launcher-text, .stamped-launcher-open .launcher-icon {
    display: none;
}

.launcher-close-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.stamped-launcher-open .launcher-close-icon {
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' fill-rule='nonzero' d='M11.06 10l3.713 3.712a.75.75 0 0 1-1.06 1.061L10 11.061l-3.712 3.712a.75.75 0 0 1-1.061-1.06L8.939 10 5.227 6.288a.75.75 0 1 1 1.06-1.061L10 8.939l3.712-3.712a.75.75 0 0 1 1.061 1.06L11.061 10z'/%3E%3C/svg%3E");
}