/* coffer.css */
.StripeElement {
    margin: 10px 0 20px 0;
    max-width: 100%;
    max-height: 40px;
    padding: 10px 14px;
    font-size: 18px;
    box-shadow: rgba(50, 50, 93, 0.14902) 0px 1px 3px, rgba(0, 0, 0, 0.0196078) 0px 1px 0px;
    border: 0;
    outline: 0;
    border-radius: 4px;
    background: white;
}

div#coffer-panel-2 {
    height: 0;
    overflow: hidden;
}

.coffer-box {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 6px 10px -4px rgb(0 0 0 / 10%);
    display: block;
    border: 1px solid rgb(0 0 0 / 5%);
    position: relative;
    z-index: 999;
    margin: 15px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.coffer-options {
    display: flex;
    align-items: center;
}

div#coffer-option-other {
    height: 0;
    overflow: hidden;
    margin-top: 10px;
}

.coffer-options > div {
    flex: 1;
}

.coffer-footer {
    overflow: hidden;
}

.coffer-option {
    cursor: pointer;
    margin-right: 10px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.coffer-option:last-child {
    margin-right: 0;
}

form#payment-form {
    margin-top: 30px;
    overflow: hidden;
}

.coffer-success, .coffer-loading {
    margin-top: 15px;
    height: 140px;
    overflow: hidden;
}

.coffer-panel button#submit {
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.coffer-success {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.coffer-panel button#submit:hover {
    top: -2px;
}

div#coffer-option-other {
    display: flex;
}

div#coffer-option-other input, div#coffer-option-other button {
    flex: 1;
}

div#coffer-option-other button.coffer-btn {
    max-width: 100px;
    margin-left: 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

div#coffer-option-other button.coffer-btn:hover {
    opacity: 0.8;
}

input#coffer-option-custom {
    border: 1px solid;
    border-radius: 6px;
    padding: 0 10px;
}

span.coffer-option-other-label {
    font-weight: bold;
    margin-right: 5px;
}

.coffer-head h2 {
    margin: 0 0 15px 0;
}

@media screen and (max-width: 767px) {

    .coffer-option-other-btn {
        min-width: 100%;
        margin-top: 10px;
    }
    
    .coffer-options {
        flex-wrap: wrap;
    }
    
    .coffer-option:nth-child(4) {
        margin-right: 0;
    }

}