.damouras-getquote {
    display: inline-block;
    margin: 5px 0 0 0;
    padding: 0;
}

.damouras-getquote__trigger {
    appearance: none;
    border: 0;
    border-radius: 6px;
    background: var(--dgq-button-bg, #77be2d);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    text-shadow: none;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.damouras-getquote__trigger:hover,
.damouras-getquote__trigger:focus-visible {
    background: var(--dgq-button-bg-hover, #5f8924);
    color: #fff;
    outline: none;
}

.damouras-getquote__trigger:focus-visible,
.damouras-getquote__close:focus-visible {
    box-shadow: 0 0 0 3px rgba(119, 190, 45, .24);
}

.damouras-getquote__modal[hidden] {
    display: none !important;
}

.damouras-getquote__modal {
    align-items: flex-start;
    display: flex;
    inset: 0;
    justify-content: center;
    overflow-y: auto;
    padding: 4rem 1rem;
    position: fixed;
    z-index: 12000;
}

.damouras-getquote__backdrop {
    background: rgba(52, 54, 66, .90);
    inset: 0;
    position: fixed;
}

.damouras-getquote__dialog {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, .28);
    cursor: auto;
    max-width: var(--dgq-dialog-width, 600px);
    position: relative;
    width: 90%;
    z-index: 1;
    animation: dgq-enter .22s ease-out both;
}

.damouras-getquote__content {
    padding: 1.4em;
}

.damouras-getquote__close {
    align-items: center;
    appearance: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 2px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    z-index: 2;
}

.damouras-getquote__close:hover {
    background: #f5f5f5;
    color: #333;
}

body.damouras-getquote-open {
    overflow: hidden;
}

@keyframes dgq-enter {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 599px) {
    .damouras-getquote__modal {
        padding: 1.25rem .75rem;
    }

    .damouras-getquote__dialog {
        width: 100%;
    }

    .damouras-getquote__content {
        padding: 1.1em;
        padding-top: 3.2em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .damouras-getquote__dialog {
        animation: none;
    }
}

.damouras-getquote__close:hover {
    background: var(--dgq-button-bg, #5f8924) !important;
    border-color: var(--dgq-button-bg, #5f8924) !important;
    color: #ffffff !important;
}