.imovago-feedback
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 5000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.imovago-feedback--none
{
    display: none;
}

.imovago-feedback--overlay
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color:rgb(0, 0, 0, 0.3);
    z-index: 5001;
    top: 0;
    left: 0;

}


.imovago-feedback--card
{
    position: relative;
    width: 90%;
    max-width: 500px;
    height: auto;
    min-height: 200px;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 5002;
    box-sizing: border-box;
    padding: 40px;
}

@media(min-width: 768px)
{
    .imovago-feedback--card
    {
        width: 100%;
    }
}

@media(min-width: 992px)
{

}

@media(min-width: 1200px)
{

}

@media(min-width: 1400px)
{

}

.imovago-feedback--card-button-close
{
    position: absolute;
    width: auto;
    height: auto;
    padding: 7px;
    right: 5px;
    top: 5px;
}

.imovago-feedback--card-button-close-svg
{
    width: 20px;
    height: 20px;
}

.imovago-feedback--card-button-close-svg-path
{
    fill: var(--primary-regular);
}

.imovago-feedback--card-content
{
    font-size: var(--typography-text-middle-font-size--sm);
    line-height: var(--typography-text-middle-line-height--sm);
}

@media(min-width: 768px)
{
    .imovago-feedback--card-content
    {
        font-size: var(--typography-text-middle-font-size--md);
        line-height: var(--typography-text-middle-line-height--md);
    }
}

@media(min-width: 992px)
{
    .imovago-feedback--card-content
    {
        font-size: var(--typography-text-middle-font-size--lg);
        line-height: var(--typography-text-middle-line-height--lg);
    }
}

@media(min-width: 1200px)
{
    .imovago-feedback--card-content
    {
        font-size: var(--typography-text-middle-font-size--xl);
        line-height: var(--typography-text-middle-line-height--xl);
    }
}

@media(min-width: 1400px)
{
    .imovago-feedback--card-content
    {
        font-size: var(--typography-text-middle-font-size--xxl);
        line-height: var(--typography-text-middle-line-height--xxl);
    }
}