button.purple {
    background: #6c43ff;
    color: white;
    transition: background-color .25s ease;
}

button.purple:hover {
    background-color: #7d58ff;
}





.w {
    margin: 0 auto;
    max-width: 1080px;
    padding: 20px;
}

.w >h1 {
    color: #001a47;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}

.w >p {
   font-size: 16pt;
   text-align: center;
   margin-top: 0;
   margin-bottom: 20px;
}

#w-timeline {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
}

#w-timeline>div {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: fit-content;
}

#w-timeline .tile {
    position: relative;
    padding: 12px;
    background: #eee;
    width: 256px;
    height: 192px;
    margin-right: -56px;
    background: #6c43fe;
    color: white;
    -webkit-mask-image: url(/application/files/1017/3763/5330/webinar_event_mask_a.svg);
    mask-image: url(/application/files/1017/3763/5330/webinar_event_mask_a.svg);
    mask-repeat: no-repeat;
}

#w-timeline .tile::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    content: "";
    background: linear-gradient(70deg, #6c43fed2, #6c43fe71, #6c43fea2);
    transition: opacity .15s ease;
}

#w-timeline .tile.active::before {
    opacity: .8;
}

#w-timeline .tile::after {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 125%;
    z-index: 3;
    content: "";
    background: linear-gradient(to top, #21b472fb, #21b472ec 25%, #21b47200);
    transition: top .35s ease;
}

#w-timeline .tile:hover::after {
    top: 25%;
}


#w-timeline .tile.active::after {
    top: -25%;
}



#w-timeline .tile img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

#w-timeline .tile .day {
    position: absolute;
    text-align: right;
    right: 152px;
    top: 4px;
    z-index: 4;

    font-size: 40pt;
    font-weight: bold;
}

#w-timeline .tile .month {
    position: absolute;
    left: 110px;
    top: 4px;
    z-index: 4;
    font-size: 40pt;
    font-weight: bold;
}

#w-timeline .tile .year {
    position: absolute;
    right: 156px;
    top: 72px;
    z-index: 4;
    font-size: 14pt;
    font-weight: bold;
}

#w-timeline .tile .time {
    position: absolute;
    left: 110px;
    top: 62px;
    z-index: 4;
    font-size: 32pt;
}

#w-timeline .tile .name {
    position: absolute;
    left: 28px;
    width: 184px;
    top: 122px;
    z-index: 4;
    font-size: 15pt;
    font-weight: bold;
    transform: skewX(-21deg);
}

#w-timeline .tile .code {
    opacity: .1;
}
.wt-desc{display: none;}

#w-gray
{
    background: rgb(247, 247, 247);
}

#w {
    min-height: 920px;
}

#w-info-title{}
#w-info-desc{}

#w-success {
    padding: 80px 28px;
    display: none;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

#w-success img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    display: block;
    margin-bottom: 18px;
}

#w-success h3 {
    font-weight: bold;
}

#w-success p,
#w-success h3 {
    color: #001a47;
    margin-top: 8px;
}

#w-form {
    background: rgb(252, 252, 252);
    margin: 0 auto;
    max-width: 480px;
    width: 80%;
    padding: 20px;
    display: none;
}

#w-form p {
    font-weight: bold;
    margin-top: 16px;
    padding-left: 18px;
}

#w-form span.required {
    color: red;
    font-weight: normal;
}

#w-form-fields input {
    display: block;
    width: 100%;
    padding-left: 18px;
    color: #001a47;
    font-weight: bold;
}

input[type="submit"]#w-form-submit {
    display: block;
    color: white !important;
    background: #1fd78a;
    transition: background-color .3s ease;
    width: 100px;
}

input[type="submit"]#w-form-submit {
    color: white;
    background: #21db8d;
}



#privacy {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-top: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 11pt;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;
}

#privacy input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    background: white;
    box-shadow: 0px 2px 8px var(--main-shadow);
    border-radius: 8px;
}

#privacy:hover input~.checkmark {
    background-color: #ece7ff;
}

#privacy input:checked~.checkmark {
    background-color: #6c43fe;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#privacy input:checked~.checkmark:after {
    display: block;
}

#privacy .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


#w-form-actions {
    display: flex;
    flex-direction: row-reverse;
}

button#w-form-submit:hover {
    color: white;
    background: #22d68b;
}