header{
    background-color: rgba(0, 0, 0, 0.8);
}

.block{
    padding: 70px 0;
}
/* ------Event Type------ */
.event-flow{
    border-right: 5px solid #d9d9d9;
}

.error{
    color:red;
}

.event-type-wrap .radio-alias{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #c5c5c5;
    border-radius: 8px;
    padding:15px 20px;
    cursor: pointer;
    height: 100px;
}

.event-type-wrap .radio-alias .radio-lft{
    white-space: nowrap;
}

.event-type-wrap .radio-alias .radio-lft img{
    padding:10px;
    margin-right: 15px;
    border:1px solid #000;
    float:left;
}

.event-type-wrap .radio-alias .radio-lft h5{
    font-size:18px;
    font-weight: 600;
    margin-top:8px;
}

.event-type-wrap .radio-alias .radio-lft h5 span{
    display: block;
    font-size:14px;
    font-weight: 400;
}

.event-type-wrap .radio-alias .radio-rtl span{
    width: 35px;
    height: 35px;
    display: block;
    line-height: 35px;
    text-align: center;
    background-color: #d9d9d9;
    border-radius: 50%;
}

.event-type-wrap .radio-alias .radio-rtl span i{
    display: none;
}

.event-type-wrap input[type="radio"],
.event-type-wrap input[type="checkbox"]{
    display: none;
}

.event-type-wrap input[type=radio]:checked + .radio-alias,
.event-type-wrap input[type=checkbox]:checked + .radio-alias{
    background-color: #b22222;
    border-color:#b22222;
}

.event-type-wrap input[type=radio]:checked + .radio-alias .radio-lft,
.event-type-wrap input[type=checkbox]:checked + .radio-alias .radio-lft{
    color:#fff;
}

.event-type-wrap input[type=radio]:checked + .radio-alias .radio-lft img,
.event-type-wrap input[type=checkbox]:checked + .radio-alias .radio-lft img{
    filter: invert(1);
}

.event-type-wrap input[type=radio]:checked + .radio-alias .radio-rtl span,
.event-type-wrap input[type=checkbox]:checked + .radio-alias .radio-rtl span{
    background-color: transparent;
    border:2px solid #fff;
}

.event-type-wrap input[type=radio]:checked + .radio-alias .radio-rtl span i,
.event-type-wrap input[type=checkbox]:checked + .radio-alias .radio-rtl span i{
    color: #fff;
    display: inline-block;
}

.event-type-sidebar{
    position: sticky;
    top: 60px;
}

.event-type-wrap .notice{
    font-size: 14px;
    background-color: rgba(178, 34, 34, 0.2);
    border:1px dashed #b22222;
    border-radius: 8px;
    padding:3px 10px;
    width: 100%;
    margin-bottom: 40px;
}

.event-type-wrap .notice i,
.event-type-wrap .notice a{
    color:#b22222;
}

.event-type-wrap .notice a{
    font-weight: 600;
}

#box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding:10px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    /* box-shadow: 0 7px 40px rgb(0, 0, 0, 0.15); */
}
.gradient-border {
    --borderWidth: 2px;
    background: #0c0c0c;
    position: relative;
    border-radius: var(--borderWidth);
}
.gradient-border:after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(60deg, #151c17, #021708, #f8f8f8, #000, #021708, #fff, #021708, #151c17);
    /* border-radius: calc(2 * var(--borderWidth)); */
    z-index: -1;
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
}


@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-border-wrap{
    animation: pulse 2s ease infinite;
}

.success-modal .modal-dialog{
    margin-top: 100px;
}

.success-modal .modal-content{
    border: none;
}

.success-modal .btn-close{
    background-color: #fff;
    border-radius: 50%;
}

.success-modal h3{
    color:#20BF55;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-modal .modal-body{
    padding:30px;
}

.success-modal .modal-body img{
    margin-bottom: 10px;
}

@media(max-width:767.98px){
    .event-flow{
        border:none;
    }
}
