.ss-stocks-controls-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;

    &.controls>button {
        width: 40px;
        padding: 2px;
        margin: 2px;
        border: 0;
        border-radius: 4px;
        font-size: 14px;
        text-align: center;
        color: #434653;
        background-color: #efefef;
    }
}



.ss-stocks-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ss-stocks-btn>span {
    font-size: 21px;
}

.ss-prediction-btn,
.ss-profitable_days-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-top: 0;
    border-right: 0;
    border-bottom: 0px solid #e7e7e7;
    border-left: 0px solid #e7e7e7;
    padding: 1rem 2rem;
    margin-left: auto;
}

.ss-prediction-btn,
.ss-profitable_days-btn:focus {
    outline: none;
}


.conversion-fields {
    background-color: #f5f5f5;
    border-radius: 1rem;
    padding: 2rem .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.conversion-fields .field {
    display: flex;
    flex-flow: row;
}

.conversion-fields .label {
    font-weight: bolder;
    background-color: lightgray;
    padding: 0.25rem;
    border-radius: .25rem 0 0 .25rem;
    line-height: 3rem;
    padding: 0 .75rem;
}

.conversion-fields input {
    padding: 0.45rem .5rem;
    border-radius: 0 .25rem .25rem 0;
    border: none;
}

.conversion-fields input:focus {
    outline: none;
}

/* hide input arrows */
/* Chrome, Safari, Edge, Opera */
.conversion-fields input::-webkit-outer-spin-button,
.conversion-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.conversion-fields input[type=number] {
    -moz-appearance: textfield;
}


#custom_collapsible_module {
    position: relative;
}

#custom_collapsible_module p.collapse[aria-expanded="false"] {
    height: 120px !important;
    overflow: hidden;
    display: block;
    transition: height 0.35s ease-in-out;
}

#custom_collapsible_module p.collapsing[aria-expanded="false"] {
    height: 120px !important;
}

#custom_collapsible_module p.visible[aria-expanded="false"] {
    height: 1280px !important;
}

#custom_collapsible_module .paragraph-overlay {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 100%;
    height: 44px;
    background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(0, 255, 0, 0) 80%);
}

@media screen and (min-width: 576px) {
    #custom_collapsible_module p.visible[aria-expanded="false"] {
        height: 920px !important;
    }

}

@media screen and (min-width: 992px) {
    #custom_collapsible_module p.visible[aria-expanded="false"] {
        height: 576px !important;
    }
}

/* Bitcoin Price Today */

.template-last-btc_live-price,
.template-first-btc_daily-price,
.template-first-btc_monthly-price,
.template-last-btc_daily-price,
.all-time-high-btc-price,
.template-last-btc_monthly-price {
    font-weight: 900;
    font-size: 16px;
    color: #5f6169;

}

.template-change-btc_daily-percentage,
.template-change-btc_monthly-percentage,
.template-change-btc_yearly-percentage,
.template-needs_increase-percentage {
    font-weight: 900;
    font-size: 16px;

}



/* Style chart load animation */

#stocks-and-indices-chart,
#old-stocks-and-indices-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lds {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 100px;
}

.lds div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 6px;
    background: #3C75D5;
    animation: lds 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds div:nth-child(1) {
    left: 6px;
    animation-delay: -0.36s;
}

.lds div:nth-child(2) {
    left: 18px;
    animation-delay: -0.24s;
}

.lds div:nth-child(3) {
    left: 30px;
    animation-delay: -0.18s;
}

.lds div:nth-child(4) {
    left: 42px;
    animation-delay: -0.12s;
}

.lds div:nth-child(5) {
    left: 54px;
    animation-delay: -0.06s;
}

.lds div:nth-child(6) {
    left: 66px;
    animation-delay: 0;
}

@keyframes lds {
    0% {
        top: 6px;
        height: 51px;
    }

    50%,
    100% {
        top: 19px;
        height: 16px;
    }
}

.loader-container {
    position: absolute;
    margin-top: 100px;
    background-color: rgba(255, 255, 255, 0.5);
}


.hide {
    display: none;
}

.green {
    color: #12A62B;
}

.red {
    color: red;
}