.cobrand_form {
    background: #6DC08C;
    padding: 50px;
    margin: 25px 0px 50px;
}
.cobrand_form .input-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.cobrand_form .input-group.half-width .input-wrapper {
    width: 49%;
}
.cobrand_form .input-wrapper {
    width: 100%;
}
.cobrand_form .input-group .input-label {
    font-size: 24px;
    color: #fff;
}
.cobrand_form input {
    width: 100%;
    border: 0px;
    padding: 12.5px 20px;
    margin: 12.5px 0px 10px;
}

.cobrand_form input[type="submit"]{
    background: #fff;
    color: #000;
    padding: 20px 0px;
    margin: 25px 0px 0px;
}
#cobranded_popup {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 70%);
    z-index: 99999;
    transition: all ease-in-out 0.3s;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
#cobranded_popup.active {
    opacity: 1;
    pointer-events: all;
}
#cobranded_popup .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
#cobranded_popup .popup-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1104px;
    background: #fff;
    padding: 35px 25px 50px;
    border-radius: 20px;
    position: relative;
}
#cobranded_popup #close {
    z-index: 9;
    position: absolute;
    top: 17.5px;
    right: 22.5px;
    font-size: 32px;
    cursor: pointer;
}
#cobranded_popup .img-wrapper{
    max-width: 50%;
    position: relative;
}
#cobranded_popup .img-wrapper img {
    width: 100%;
}
#cobranded_popup .good {
    color: #6dc08c;
    border: 5px solid #6dc08c;
    position: absolute;
    bottom: 0%;
    right: 15%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 36px;
    background: #fff;
}
#cobranded_popup .bad {
    color: #d73c3c;
    border: 5px solid #d73c3c;
    position: absolute;
    bottom: 0%;
    right: 15%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 36px;
    background: #fff;
}
.cobrand_form .popup-trigger {
    cursor: pointer;
}