
#WalkthroughfloatingButton {
    z-index: 1050;
    position: fixed;
    top: 20px;
    right: 50px;
    border: 1px solid #9D0A0E;
    border-radius: 100%;
    background-color: #F5F5F5;
    /* red background color */
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 5px;
    /* reduce the padding to decrease the button size */
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    align-items: center;
    width: 40px;
    /* set the width and height to the same value to make the button a circle */
    height: 40px;
}

#WalkthroughfloatingButton:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#WalkthroughfloatingButton-icon {
    border: 10px solid transparent;
    /* border-top-color: transparent; */
    border-left-color: #9D0A0E;
    border-left-width: 15px;
    border-radius: 4px;
    position: absolute;
    left: 14px;
}

.walkthrough-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.walkthrough-popup-action-button{
    cursor: pointer;
    background-color: #9D0A0D;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.walkthrough-popup-action-button:hover{
    background-color: #500c0e;
}
.walkthrough-popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.walkthrough-popup-header {
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.walkthrough-popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.walkthrough-popup-close {
    cursor: pointer;
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    line-height: 0.5;
    /* border: 1px solid black;
    border-radius: 50%;
    padding-top: 2px;
    padding-right: 1px;
    padding-left: 1px; */
}

.walkthrough-popup-close:hover {
    transform: translate(1px, 1px);
}

.walkthrough-popup-content {
    direction: ltr;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    width: 100%;
    margin-bottom: 20px;
    z-index: 10000000;
}

.walkthrough-tooltip-arabic, .introjs-tooltipReferenceLayer,.introjs-tooltiptext,.introjs-tooltip-title,.introjs-button{
    font-family: greta arabic, helvetica neue, Helvetica, Roboto, Arial, sans-serif !important;
}
.walkthrough-tooltip-english{
    font-family: lyon text !important;
    direction: ltr;
}

/* Slider styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.w-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.w-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    top: 4px;
}

input:checked+.w-slider {
    background-color: #9D0A0E;
    border-color: #000;
    
}

input:focus+.w-slider {
    box-shadow: 0 0 1px #9D0A0E;
}

input:checked+.w-slider:before {
    transform: translateX(26px);
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    .popup-inner {
        max-width: 100%;
        max-height: 100%;
    }
}

#open-popup{
    bottom: 120px;
}


#myBfloatingButtonutton img {
    width: 60%;
    /* set the width of the image to 60% of the button size */
    border-radius: 50%;
    /* make the image rounded */
}

#floatingButton {
    z-index: 1000;
    position: fixed;
    bottom: 50px;
    right: 20px;
    border: 1px solid #9D0A0E;
    border-radius: 100%;
    /* red background color */
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    /* padding: 35px; */
    /* reduce the padding to decrease the button size */
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    /* set the width and height to the same value to make the button a circle */
    height: 50px;
}

#floatingButton:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#surveyButton {
      bottom: 120px;
      border: 1px solid #9D0A0F;
      border-radius: 100%;
      background-color: #F5F5F5;
    }