.feedback {
    position: fixed;
    left: 30px;
    top: 0;
    margin: 10px;
    color: whitesmoke;
    border: none;
    border-radius: 0;
    padding: 5px;
    font-family: Arial;
    font-size: 11pt;
}
.closingbutton1 {
    font-size: 30px;
    position: absolute;
    top: 5px;
    right: 1px;
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    margin: 0;
}

html,
body {
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
}

body {
    margin: 0;
    padding: 0;

}

h1 {
    font-size: 11pt;
    font-family: Arial;
    line-height: 20px;
    color: whitesmoke;
    display: table-cell;
    padding: 13px 0px 0px 20px;
}

.heading {
    background-color: rgb(0, 104, 170);
    height: 50px;
    z-index: 999;

}

.main {
    margin: 18px;
    border-radius: 4px;

}

div[role="form"] {
    background-color: white;
}

#webchat {
    position: fixed;
    height: calc(100% - 50px);
    width: 100%;
    top: 50px;
    overflow: hidden;
    z-index: 999;
}

.ContinueBot {
    margin: 40px;
    display: flex;
    justify-content: center;
}

.set_buttons {
    border: none;
    font-size: 22px;
    margin:5px;
    cursor: pointer;
    color: white;
    background-color: transparent;
    position: static;
    
}
.options_buttons{
    justify-content: center;
    color: white;
    display: flex;
    height: 50px;
    width: 80px;
    position: absolute;
    right: 15px
}
.refresh {
    position: absolute;
    right: 50px;
    color: whitesmoke;
    border: none;
    border-radius: 0;
    padding: 1px;
    font-family: Arial;
    font-size: 27px;
    text-decoration: none;
}
.styleButton {
    height: 40px;
    width: 150px;
    border-radius: 20px;
    border-color: white;
    z-index: 999
}

.chatbot__prechat-custom {
    margin-left: 20px;
    margin-top: 40px;
    color: white;
    font-family: sans-serif;
    color: #ffff;
    z-index: 999
}

.chatbot_icon {
    margin-left: auto;
    text-align: center;
    border-color: white;
    color: #ffff;
    z-index: 999;
    position: fixed;
    bottom: 30px;
    right: 10px;
    margin-bottom: 0px;
    margin-right: 25px;
    border-radius: 90%;
    transition: background-color 0.1s;
    height: 85px;
    width: 85px;
    cursor: pointer;
}

.chatbot_icon:hover {
    transform: scale(1.1);
}

.disclaimer {
    display: none;
    width: 60%;
    max-width: 60%;
    height: 70%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background-color: #0068aa;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    overflow: auto;

}

.beniebotIframe {
    border-radius: 10px;
}

.beniebot {
    width: 400px;
    height: 75%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background-color: #0068aa;
    position: fixed;
    display: none;
    bottom: 20px;
    z-index: 999;
    right: 30px;
    animation: popUp 0.2s ease-out;
    transform-origin: center bottom;
    border-radius: 10px;
}



@media only screen and (max-width:800px) {
    .beniebot {
        width: 400px;
        height: 75%;
    }
}



@media only screen and (max-width:500px) {
    .beniebot {
        width: 90%;
        height: 75%;
        bottom: 10px;
        margin: 5%;
        right: 0%;
    }
    .closingbutton2 {
    font-size: 30px;
    position: absolute;
    right: 1px;
    top: 4px;
}
.refresh {
    position: absolute;
    right: 60px;
    color: whitesmoke;
    border: none;
    border-radius: 0;
    padding: 1px;
    font-family: Arial;
    font-size: 35px;
    text-decoration: none;
    margin: -7px;
}
}

.txt--uppercase {
    height: 40px;
    width: 40px;
}

.accordion-block {
    display: flex;
    align-items: center;

}

.accordion-header {
    flex-grow: 1;
    margin-left: 10px;

}

.custom-checkbox {
    transform: scale(2);
    margin-right: 8px;  
    vertical-align: middle;

}

.title-general {
    color: #ffff;
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.disclaimerText {
    color: #ffff;
}

.chatbot__error {
    background-color: rgb(253, 252, 252);
    border-bottom: none;
    border-right: none;
    border-block-start-color: 1px solid #ef6c42;
    border-radius: 5px;
    color: red;
    position: relative;
    font-size: var(--font-size-xsmall) !important;
    line-height: 0;
    bottom: -8px;
    content: "";
    transform-origin: bottom left;
    z-index: -1;
}

.iframe {
    width: 100%;
    height: 100vh;
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
