* {
    box-sizing: border-box
}

body {
    background-color: #ebf9ed;
    background-image: url('../images/collectius-logo-cropped-green.svg');
    background-position: bottom left;
    background-repeat: no-repeat;
    font-family: "TT Commons", Tahoma, Geneva, Verdana, sans-serif
}

.choose-payment-method__title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 28px;
    color: #323b4b;
}

.choose-payment-method__container {
    padding: 32px;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow-y: auto;
    max-height: 100%;
}
.choose-payment-method__section-item {
    position: relative;
    cursor: pointer;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    width: 86px;
    height: 86px;
    padding: 8px;
    background: #fff;
    margin-bottom: 0;
}

.choose-payment-method__section-item:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid #35c04f;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 14px;
    transition-duration: 0.4s;
    transform: scale(0);
    font-size: 10px;
    font-weight: bolder;
}

.choose-payment-method__section-item img {
    height: 100%;
    width: 100%;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

:checked + .choose-payment-method__section-item {
    border: 1px solid #35c04f;
}

:checked + .choose-payment-method__section-item:before {
    content: "\2713";
    background-color: #35c04f;
    transform: scale(1);
}

.choose-payment-method__btn-next {
    display: block;
    width: 201px;
    height: 50px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1.5px solid #b0b0b0;
    border-radius: 30px;
    font-weight: 500;
    font-size: 18px;
    color: #b0b0b0;
}

.choose-payment-method__btn-next.active, 
.choose-payment-method__btn-next:hover {
    color: #ffffff;
    background-color: #35c04f;
    border-color: #35c04f;
}

.choose-payment-method__section-title {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
    color: #323b4b;
}

.disabledDiv {
    pointer-events: none;
    opacity: .7
}