/* start utm */
.btn-utm-gen {
    padding: 15px 60px;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #181818;
    border: 1px solid #5C5C5C;
    border-radius: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    width: max-content;
    margin-bottom: 60px;

}

.input-container {
    display: flex;
    flex-direction: column;
}

.input:hover {
    border: 1px solid #BEE8E2;
}

.input:focus {
    outline: none;
    font-weight: 500;
}

.disc-mark {
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #1FC3B0;
}

.label {
    color: #5C5C5C;
    font-size: 14px;
}

.utm-container {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 60px;
}

.utm-result {
    word-wrap: break-word;
    background-color: #1fc3b052;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    border: 1px solid transparent;
    transition: 0.3s;
    padding: 11px 15px;
    color: #191919;
    font-weight: 500;
    width: 100%;
}

.utm-block {
    padding: 0 15px;
}

.utm-block .title-lower img {
    margin-right: 15px;
}

.input {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    font-size: 16px;
    border: 1px solid transparent;
    transition: 0.3s;
    padding: 11px 15px;
    color: #191919;
    font-weight: 500;
}

.utm .title-lower {
    margin-bottom: 30px;
    color: #191919;
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
}

.utm .input {
    margin-bottom: 10px;
}

.utm .input-container .subtitle {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
}

.utm .btn {
    width: 340px;
}
.span-special {
    font-weight: 500;
    margin-bottom: 20px;
    color: #1FC3B0;
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
}

.main {
    padding-top: 140px;
}

.result_container {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

@media (max-width: 991px) {
    .main {
        padding-top: 80px;
    }

    .title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .row {
        margin-right: 0;
        margin-left: 0;
    }
}

.utm__btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.utm .btn.utm__btn {
    width: auto;
}

.utm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        'utm__title utm__btns-block'
        'utm__result utm__result'
        'utm__inputs utm__inputs'
    ;
    gap: 30px;
}

@media (max-width: 700px){
    .utm{
        grid-template-columns: 1fr;
        grid-template-areas:
            'utm__title'
            'utm__btns-block'
            'utm__result'
            'utm__inputs'
        ;
    }
}

.utm__title{
    grid-area: utm__title;
}

.utm__btns-block{
    grid-area: utm__btns-block;
}

.utm__result{
    grid-area: utm__result;
}

.utm__result-copy-btn{
    position: relative;
}

.utm__inputs{
    grid-area: utm__inputs;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 645px){
    .utm__inputs{
        grid-template-columns: 1fr;
    }
}

.utm__site{
    display: flex;
    align-items: stretch;
    
}

.utm .utm__site input{
    margin-bottom: 0;
    border-radius: 0 6px 6px 0;
    width: 100%;
}

.utm__protocol{
    padding: 0 10px;
    background-color: #1FC3B0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0 0 6px;
}

.utm__site-label{
    display: block;
    margin-top: 15px;
}

.copy-btn-img{
    min-width: 18px;
    min-height: 18px;
}
/* end utm */