#priceDrop {
    display: none;
}

.price-drop-backdrop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000000bf;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}


.price-drop-inner {
    position: relative;
    background: #fff;
    width: 500px;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.price-drop-text {
    font-weight: 500;
    margin-bottom: 25px;
}

.price-drop-form-row {
    margin-bottom: 25px;
    position: relative;
    height: 50px;
    font-size: 16px;
}

.price-drop-input {
    width: 100%;
    height: 100%;
    border: none;
    display: inline-block;
    border-radius: 0;
    background: transparent;
}

.price-drop-label {
    position: absolute;
    top: 2em;
    left: 5px;
    transform: translateY(-50%);
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 500;
    pointer-events: none;
    transition: transform 0.25s,top 0.25s,font-size 0.25s;
}

.price-drop-input:active ~ .price-drop-label,
.price-drop-input:focus ~ .price-drop-label,
.price-drop-input:not(:placeholder-shown) ~ .price-drop-label {
    font-size: 0.6em;
    top: 0;
    transform: translateY(0%);
}


.price-drop-input-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #78b0e0;
}

.price-drop-input-decoration::after {
    content: "";
    height: 100%;
    width: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffb300;
    transition: width 0.3s,background-color 0.3s;
}

.price-drop-input:active ~ .price-drop-input-decoration::after,
.price-drop-input:focus ~ .price-drop-input-decoration::after {
    width: 100%;
}

.price-drop-send {
    background: #78b0e0;
    border: 1px solid #78b0e0;
    color: #fff;
    border-radius: 10px;
    padding: 10px 50px;
    display: inline-block;
}

.price-drop-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 30px;
}

.price-drop-close::after {
    content: "cancel_border";
    position: absolute;
    font-family: "Material Icons";
    font-size: 26px;
    font-size: 1.625em;
    line-height: 30px;
    color: #1261a0;
    top: 0;
    left: 0;
    max-width: 100%;
    transform: translate(50%, -50%);
    background: #fff;
    border-radius: 50%;
}


.price-drop-info {
    display: none;
    margin-top: 20px;
    padding: 0.75rem 5.5rem;
    overflow: hidden;
    border-radius: 0.35rem 0.25rem 0.25rem 0.25rem;
    position: relative;
    transition: all 0.125s linear;
    opacity: 1;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: white;
    font-size: 1rem;
}

.price-drop-info-success {
    border: solid 2px rgb(74, 189, 89);
}

.price-drop-info-error {
    border: solid 2px #e24848;
}
