#how_to_play {
    width: 85vw;
    align-items:flex-start;
    gap:0px;
}

.hotlines-list #how_to_play {
    height: auto;
}

#how_to_play .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}

#how_to_play .close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;   
}

#how_to_play .close img{
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#how_to_play .footer {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

#how_to_play .footer p {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#how_to_play .footer p span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px 14px 0px 0px;
}

#how_to_play .fixedHeightScrollable {
    max-height: 20rem;
    overflow-y: auto;
}

#how_to_play .title {
    font-weight: bold;
    text-align: left;
    font-size: 2rem;
    margin: 0px;
}

#how_to_play .info_game {
    margin:30px 0px 12px 0px;
    padding-right: 1.5rem;
}

#how_to_play .info_game h5 {
    color: #FF4D01;
    font-weight:700;
    font-size: 1.25rem;
    margin:0px;
}

#how_to_play button {
    float: left;
}

#how_to_play button:last-child {
    width: 35px;          
    height: 35px;
    border-radius: 50%;   
    display: flex;       
    justify-content: center;
    align-items: center;
    padding: 0;             
}

@media (max-width:767px) {
    #how_to_play #back {
        display: none;
    }

    #how_to_play button:last-child {
        display: block;
    }
}

@media (min-width:768px) {
    #how_to_play #back {
        display: block;
    }

    #how_to_play button:last-child {
        display: none;
    }
}


#how_to_play  ::-webkit-scrollbar {
    width: 10px;
}

.modal {
    background-color: var(--bg-neutral-dark);
    z-index: 99999999999;
}


#how_to_play  ::-webkit-scrollbar-track {
    border-radius: 9999px;
    background: #CCC;
}

#how_to_play  ::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    background: #FF4D01;
}

#how_to_play  ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.hotline-item {
    cursor: pointer;
  }