/* Nutshell Scheduler Button */

#fx-nutshell-scheduler-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
}

.fx-nutshell-scheduler-button-inner{
    display: inline-block;
    color: var(--color-white);
    border-radius: 0;
    font-size: 22px;
    line-height: 1.24em;
    font-weight: 800;
    padding: 14px 30px;
    vertical-align: middle;
    text-decoration: none;
    background: var(--color-red);
    transition: all ease-in-out 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.fx-nutshell-scheduler-button-inner span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    max-width: 200px;
    line-height: 1.25em;
    margin-top: 4px;
}

.fx-nutshell-scheduler-button-inner:hover {
    background: var(--color-red-02);
}

#fx-nutshell-scheduler-modal #peanut-container {
    max-height: 70vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--color-red) #fff;
    overflow-x: hidden;
    padding-right: 20px;
    padding-bottom: 100px;
}

/* Webkit scrollbar styling */
#fx-nutshell-scheduler-modal #peanut-container::-webkit-scrollbar {
    width: 8px;
}

#fx-nutshell-scheduler-modal #peanut-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#fx-nutshell-scheduler-modal #peanut-container::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 4px;
}

#fx-nutshell-scheduler-modal #peanut-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-red-02);
}

.fx-nutshell-scheduler-button-close,
.fx-nutshell-scheduler-modal-close {
    position: absolute;
    top: 0;
    right: 5px;
    cursor: pointer;
    background: #fff;
    color: var(--color-red);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    top: -22px;
    right: -22px;
    font-size: 13px;
}


/* Nutshell Scheduler Modal */

#fx-nutshell-scheduler-modal {
    background-color: #fff;
    padding: 32px 32px;
    position: fixed;
    top: 6vh;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 9999;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    max-width: 820px;
    width: calc(100% - 44px);
    max-height: 80vh;
}

#nutshell-scheduler-24 #peanut-container > div {
    box-shadow: none;
    border: none;
    padding: 0;
}


.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(162, 34, 34, 0.8);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(162, 34, 34, 0);
  }
}

