﻿.giftTitle {
    margin-bottom: 0 !important;
    margin-top: 5%;
}

.range_container {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 5%;
    margin-left: 10%;
}

.sliders_control {
    position: relative;
    min-height: 20px;
}

.form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #FF9000, 0 0 9px #FF9000;
    -webkit-box-shadow: inset 0 0 3px #FF9000, 0 0 9px #FF9000;
}


input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #FF9000;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    z-index: 1;
}

.range-wrap {
    width: 500px;
    position: relative;
}

.range-value {
    position: absolute;
    top: -24%;
}

    .range-value span {
        width: 30px;
        height: 24px;
        line-height: 24px;
        text-align: center;
        background: #FF9000;
        color: #fff;
        font-size: 12px;
        display: block;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        border-radius: 6px;
    }

        #rangeTo{
            left: 108%;
        }
        #rangeFrom{
            left: -8%;
        }

.giftValue_container {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

#modalAmountsContainer {
    width: 100%;
}

.giftValue_container a.modalAmount {
    width: 47%;
}

.card-hover:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.card-hover {
    transition: transform 0.3s ease;
}

.giftFormContainer {
    margin-top: 0 !important;
}

form.giftForm {
    margin-top: 0 !important;
}

.giftForm .formGroup {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

label {
    padding: 0 !important;
}

.inputContainer {
    padding: 0 !important;
}