*,
*:after,
*:before {
    box-sizing: border-box;
}

.container {
    margin: 20px;
    max-width: 300px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    display: flex;
    flex-direction: column;
    border-width: 0 2px 0 2px;
    border-style: solid;
    border-color: #394a6d;
}

.custom-select__trigger {
    width: 403px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 20px;
    font-weight: 300;
    color: #3b3b3b;
    height: 45px;
    line-height: 60px;
    background: #ffffff;
    cursor: pointer;
    border-width: 2px 0 2px 0;
    border-style: solid;
    border-color: #394a6d;
}

.custom-options {
    position: absolute;
    display: block;
    height: 400px;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #394a6d;
    border-top: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    overflow: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px 0 22px;
    font-size: 22px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.5s;
}

.custom-option:hover {
    cursor: pointer;
    background-color: #b2b2b2;
}

.custom-option.selected {
    color: #ffffff;
    background-color: #305c91;
}

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}

.arrow::before {
    left: -5px;
    transform: rotate(-45deg);
    background-color: #394a6d;
}

.arrow::after {
    left: 5px;
    transform: rotate(45deg);
    background-color: #394a6d;
}

.open .arrow::before {
    left: -5px;
    transform: rotate(45deg);
}

.open .arrow::after {
    left: 5px;
    transform: rotate(-45deg);
}


/* Options Style start here */

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.options-wrapper {
    border: 1px solid #959a9f;
    border-radius: 4px;
    margin-top: 10px;
    opacity: 1;
    padding: 6px;
    width: 414px;
    display: grid;
    grid-template-rows: max-content max-content;
    grid-gap: 10px;
    display: none;
    overflow-y: scroll;
    height: 500px;
}

.options-wrapper.hide-dropdown {
    display: none;
}

.options-wrapper.active {
    display: grid;
    overflow-y: scroll;
    height: 500px;
}

.options {
    background-color: #f3f3f3;
    padding: 10px;
    height: 150px;
    cursor: pointer;
    margin: 10px;
}

.options:hover {
    background-color: #eb7722;
    color: white;
}

.options:hover .text-content {
    background-color: #eb7722;
    color: white;
}

.options:hover .icon {
    filter: brightness(0) invert(1);
}

.selected-option {
    background-color: #eb7722;
    color: white;
}

.selected-option .text-content {
    background-color: #eb7722;
    color: white;
}

.selected-option .icon {
    filter: brightness(0) invert(1);
}

.date-time-reload-count-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: 8px;
}

.firecycle-name {
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
}

.text-content {
    letter-spacing: 0px;
    color: #959a9f;
    opacity: 1;
}

.text-cells-wrapper {
    display: grid;
    grid-template-rows: repeat(3, max-content);
    grid-row-gap: 6px;
}

.text-cells-wrapper:hover {
    color: white;
}

.dropdownDateTimeIcon {
    height: 15px;
    width: 15px;
    color: black;
}

.calendar.icon {
    margin-top: 3px;
    background-image: url("images/calendar.svg");
    color: white;
}

.clock.icon {
    margin-top: 3px;
    background-image: url("images/clock.svg");
}

.sub-text-content {
    font-weight: 700;
}

.graph.icon {
    height: 18px;
    width: 26px;
    background-image: url("../assets/icons/graph.svg");
}

.graph-button {
    background-color: #eb7722;
    color: white;
    background-color: #eb7722;
    padding: 14px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.options-wrapper::-webkit-scrollbar {
    width: 16px;
    padding-top: 12px;
}

.options-wrapper::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    width: 12px;
    border-radius: 7px;
    opacity: 1;
}

.options-wrapper::-webkit-scrollbar-track {
    border: 1px solid #707070;
    border-radius: 0px 4px 4px 0px;
}