.vtext-group {
    display: flex;
    /* border: 1px solid #787881 !important; */
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: .5rem 1rem;
    position: relative;
    margin-bottom: 1rem;
}

.v-checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    margin: 8px;
    margin-right: 15px;
    margin-bottom: 0;;
}

.vtext-group .v-checkbox:first-child {
    margin-left: 0;
}

.vtext-group .v-checkbox:last-child {
    margin-right: 0;
}

.v-checkbox label.img-picker-label {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #bbb;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.v-checkbox input[type="radio"].img-picker-input {
    display: none;
}

.v-checkbox input:checked + label.img-picker-label {
    /* border: 2px solid var(--primary); */
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    transform: scale(1.15);
}
.v-checkbox input:checked + label.img-picker-label + span {
    color: var(--primary);
    font-weight: 600;
}

.gateway {
    position: relative;
    display: flex;
    line-height: 1.5;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 30%; */
    position: relative;
    background: #f2f4f7;
    border: 2px solid #e8ebed;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.gateway[aria-disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}
.gateway:not([aria-disabled]):hover {
    border-color: #28333b;
}
.gateway:not([aria-disabled]):hover .logo,
.gateway:not([aria-disabled]):hover p {
    color: #28333b;
    opacity: 1;
}
.gateways .gateway.selected {
    border-color: #40b3ff;
    background: rgba(64, 179, 255, 0.1);
}
.gateways .gateway.selected .logo {
    color: #40b3ff;
    opacity: 1;
}
.gateways .gateway.selected p {
    color: #28333b;
}
.gateways .gateway.selected::after {
    content: '\f00c';
    font-family: 'themify';
    font-weight: 900;
    position: absolute;
    height: 40px;
    width: 40px;
    top: -18px;
    right: -18px;
    background: #fff;
    border: 2px solid #40b3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}
.gateways .gateway p {
    transition: all 0.5s ease;
}
.gateways .gateway .logo {
    font-size: 60px;
    color: #8a959c;
}
.gateways .gateway p {
    margin-bottom: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8a959c;
}
.gateways .gateway .logo img {
    width: 60px;
    margin-top: -17px;
    opacity: .5;
}
.coming-soon-badge {
    position: absolute;
    top: -10%;
    right: 0;
    transform: translate(8px, 2px);
    background-color: #28333b;
    font-size: 12px;
    line-height: 0;
    font-weight: 500;
    color: #fff;
    padding: 1em 0.7em;
    border-radius: 100vh;
}

@media (max-width: 576px) {
    .vtext-group {
        overflow-x: scroll;
    }
}
