body {
    padding: 0;
    margin: 0;
    font-family: Rubik, sans-serif;
}
.call-widget-frame {
    position: fixed;
    z-index: 2147483647;
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.call-widget-text-call-button {
    display: inline-flex;
    background: #2969ff;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 0 5px 0 #2969ff;
    -webkit-animation: pulse 1.5s infinite;
}
.call-widget-text-call-button:hover {
    opacity: .8;
}
.call-widget-icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2969ff;
    border-radius: 50%;
    cursor: pointer;
    padding: 15px;
    box-shadow: 0 0 5px 0 #2969ff;
    -webkit-animation: pulse 1.5s infinite;
}
.call-widget-icon-section:hover {
    opacity: .8;
}
.form-container {
    position: absolute;
    display: none;
    width: 280px;
    right: 0;
    bottom: 68px;
    background: #2969ff;
    border-radius: 15px;
    box-shadow: 0 0 5px 0 #2969ff;
    border-bottom: 5px solid #FFB801;
}
.form-data {
    position: relative;
    padding: 10px;
}
.form-data-header {
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
}
.form-data-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.form-data-body input {
    background: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
}
.form-data-body input:focus {
    border: none;
    outline: none;
}
.form-data-footer {
    padding: 10px;
    display: flex;
}
.form-data-footer button {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid;
    font-size: 16px;
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
}
.form-data-footer button:hover {
    background: #ffffff3b;
}
.close-icon {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
}
.close-icon:hover {
    opacity: .8;
}
.close-icon:before, .close-icon:after {
    position: absolute;
    left: 12px;
    content: ' ';
    height: 11px;
    width: 2px;
    background-color: #888888;
}
.close-icon:before {
    transform: rotate(45deg);
}
.close-icon:after {
    transform: rotate(-45deg);
}
.form-error {
    display: none;
    font-size: 10px;
    margin-bottom: 5px;
    background: #CC3333;
    color: white;
    padding: 7px 8px;
    border-radius: 10px;
    width: fit-content;
}
.final-message {
    position: absolute;
    width: 240px;
    display: none; 
    right: 0;
    color: white;
    bottom: 80px;
    padding: 10px 15px;
    border-radius: 15px;
}
.final-message.green-element {
    background: #66CC99;
    box-shadow: 0 0 5px 0 #66CC99;
}
.final-message.red-element {
    background: #CC3333;
    box-shadow: 0 0 5px 0 #CC3333;
}
.final-message.yellow-element {
    background: #FFCC33;
    box-shadow: 0 0 5px 0 #FFCC33;
}
@-webkit-keyframes pulse {
    0% {
      -moz-transform: scale(0.95);
      -ms-transform: scale(0.95);
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
    }
    70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 8px rgba(90, 153, 212, 0);
    }
    100% {
      -moz-transform: scale(0.95);
      -ms-transform: scale(0.95);
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}