section.webhook-builder .form p {
    margin-bottom: 10px;
}
section.webhook-builder .actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 15px;
}
section.webhook-builder .actions .action {
    border: var(--border);
    border-radius: var(--border-radius);
    padding: 15px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section.webhook-builder .actions .action:hover,
section.webhook-builder .actions .action.active {
    border-color: var(--color);
}
section.webhook-builder .actions .action.active {
    background: black;
}
section.webhook-builder .actions .top {
    color: white;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section.webhook-builder .actions .active .top {
    color: var(--color);
}
section.webhook-builder .actions .desc {
    font-size: 16px;
    line-height: 16px;
}
section.webhook-builder .left {
    position: relative;
}
section.webhook-builder .grid {
    grid-template-columns: 400px 1fr;
    grid-gap: 5px;
}
section.webhook-builder .grid .right .code pre {
    border: 1px dashed var(--color);
    background: black;
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    border-radius: var(--border-radius);
}
section.webhook-builder .box.main {
    padding: 25px 35px 10px;
    overflow: hidden;
}
section.webhook-builder h2 {
    color: var(--color-darker);
    margin-bottom: 5px;
}
section.webhook-builder .intro {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 22px;
}
section.webhook-builder h2 span {
    color: var(--color);
}
section.webhook-builder .selector {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 5px;
    margin: 10px 0;
}
section.webhook-builder .selector li {
    border: var(--border);
    border-radius: var(--border-radius);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section.webhook-builder .selector li:hover,
section.webhook-builder .selector li.active {
    border-color: var(--color);
}
section.webhook-builder .selector li.active .name {
    color: var(--color);
    font-weight: 700;
}
section.webhook-builder .selector li.active .icon {
    color: var(--color);
    opacity: 1;
}
section.webhook-builder .selector li .icon {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 26px;
    line-height: 26px;
    opacity: 0.5;
    font-family: var(--font2);
    font-weight: 900;
    letter-spacing: -1px;
}
section.webhook-builder .selector li .name {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 11px;
    line-height: 11px;
    margin-top: 3px;
}
section.webhook-builder h3 {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--color);
    font-weight: 300;
    line-height: 32px;
}
section.webhook-builder h4 {
    font-size: 18px;
    margin-bottom: 10px;
    border-left: 2px solid var(--color-darker);
    padding-left: 14px;
    margin-top: 10px;
}
section.webhook-builder .left .item {
    margin-bottom: 15px;
    border-bottom: var(--border);
    padding-bottom: 15px;
}
section.webhook-builder p {
    font-size: 16px;
    opacity: 0.75;
    margin: 0 0 15px;
    line-height: 18px;
}
section.webhook-builder .left .item:last-of-type {
    border: unset;
}
section.webhook-builder svg {
    width: 583px;
    height: 240px;
    position: absolute;
    left: -78px;
    bottom: 150px;
    transform: rotate(40deg);
}
section.webhook-builder .c-dashed-line__path {
    animation: c-dashed-line2 3s linear infinite;
    fill: none;
    stroke: var(--color-darker);
    stroke-dasharray: 200 740;
    stroke-dashoffset: 0;
    stroke-width: 19px;
    stroke-linecap: round;
}
section.webhook-builder .c-dashed-line__dash {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-dasharray: 1 16;
    stroke-width: 2px;
    stroke-linecap: round;
}
@keyframes c-dashed-line2 {
    from {
        stroke-dashoffset: 0;
    }
to {
        stroke-dashoffset: 940;
    }
}
@media all and (max-width: 1440px) {
    section.webhook-builder .left .item:last-of-type {
        margin: unset;
    }
}
@media all and (max-width: 1140px) {
    section.webhook-builder .actions {
        grid-template-columns: 1fr;
    }
    section.webhook-builder .grid {
        grid-template-columns: 245px 1fr;
    }
}
@media all and (max-width: 960px) {
    section.webhook-builder .actions {
        grid-template-columns: 1fr 1fr 1fr;
    }
    section.webhook-builder .grid {
        grid-template-columns: 1fr;
    }
    section.webhook-builder svg {
        display: none;
    }
}
@media all and (max-width: 720px) {
    section.webhook-builder .code {
        display: block;
        max-width: calc(100vw - 70px);
        width: calc(100vw - 70px);
    }
section.webhook-builder .intro {
        padding-left: 15px;
    }
    section.webhook-builder .box.main {
        padding: 20px;
    }
    section.webhook-builder h2 {
        padding-left: 15px;
    }
section.webhook-builder .selector {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media all and (max-width: 576px) {
    section.webhook-builder .code {
        max-width: calc(100vw - 50px);
        width: calc(100vw - 50px);
    }
    section.webhook-builder .intro {
        padding-left: 15px;
        font-size: 18px;
        line-height: 20px;
    }
    section.webhook-builder .box.main {
        padding: 20px 0 0;
    }
    section.webhook-builder h2 {
        padding-left: 15px;
        font-size: 26px;
    }
}