body {
    margin: 0;
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

* div {
    display: flex;
    flex-wrap: wrap;
}

img {
    border-style: none;
}

* a {
    color: #1e81d6;
    text-decoration: none;
    font-family: robotoLight, Arial, Helvetica, sans-serif;
    background-color: transparent;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.wrapper {
    background: #FFFFFF;
    width: 100%;
    border-radius: 4px;
    padding: 0 40px 25px;
}

.channels-wrapper {
    display: block;
    width: 100%;
    font-family: 'robotoLight', Arial, Helvetica, sans-serif;
    padding-top: 30px;
}

.channels-header {
    font-size: 20px;
    line-height: 1.4em;
}

.channels-subheader {
    color: #656565;
}

.channels-essence {
    margin-top: 20px;
}

.block-of-channel-wrapper {
    margin-bottom: 25px;
    display: flex;
    cursor: pointer;
    position: relative;
    flex-wrap: wrap;
    padding: 10px;
    min-width: 25%;
    box-sizing: border-box;
}

.channel-logo {
    width: 100px;
    height: 100px;
    margin-right: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.channel-link {
    font-size: 16px;
    height: 16px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    color: black;
    border-bottom: 1px dotted black;
    -webkit-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
    max-width: 90%;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.channel-info {
    display: none;
}

.channel-tariff {
    font-size: 16px;
    color: #656565;
    margin-top: 15px;
    line-height: 24px;
}

.channel-tariff-name {
    display: inline-block;
    font-family: 'robotoLight', Arial, Helvetica, sans-serif;
    font-size: 16px;
    cursor: pointer;
    color: #007AE5;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border-bottom: 1px solid;
}

.tooltip-wrapper {
    padding: 10px;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 16px 0px;
    border-radius: 4px;
    transition: opacity 0.3s ease-in-out 0s, visibility 0.3s ease-in-out 0s;
    opacity: 1;
    visibility: visible;
    z-index: 50;
    min-width: 28px;
    min-height: 28px;
    display: none;
    color: rgb(26, 26, 26);
    bottom: 120px;
    position: absolute;
}

.tooltip-wrapper__active {
    display: block;
}

.tooltip-triangle {
    position: absolute;
    content: "";
    z-index: 60;
    left: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin-left: 0px;
    bottom: -10px;
    border-top: 10px solid rgb(255, 255, 255);
}

.tooltip-triangle-2 {
    position: absolute;
    content: "";
    z-index: 55;
    left: 14px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    margin-left: 0px;
    bottom: -11px;
    border-top: 11px solid transparent;
}

.channel-tooltip {
    display: block;
    box-sizing: border-box;
    max-width: 430px;
    position: relative;
    font-family: 'robotoLight', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    padding: 30px;
}

.channel-tooltip-title {
    display: inline-block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-family: 'robotoRegular', Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #1A1A1A;
    border: none;
}

.icon-close-channel-tooltip {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 16px;
    top: 16px;
}

.tooltip-button {
    font-family: 'robotoRegular', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #656565;
    margin-bottom: 15px;
}

.page-header-wrapper {
    width: 100%;
    background: url(/images/header.png) #8C5BBA;
    background-repeat: no-repeat;
    background-position: right;
    margin: 50px 0;
}

.header-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    padding: 0 7%;
}

.page-header {
    color: #FFFFFF;
    font-size: 44px;
    line-height: 1.25em;
    max-width: 40%;
    margin: 0;
}

.page-header-2 {
    color: #000;
    font-size: 30px;
    line-height: 1.25em;
    margin: 30px;
    display: none;
}

@media screen and (max-width: 1440px) {
    .block-of-channel-wrapper {
        min-width: 33%;
    }
}

@media screen and (max-width: 1024px) {
    .block-of-channel-wrapper {
        min-width: 33%;
    }

    .page-header {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .block-of-channel {
        flex-direction: column;
    }

    .channel-logo {
        margin-bottom: 10px;
    }

    .page-header {
        display: none;
    }

    .page-header-2 {
        display: block;
    }
}

@media screen and (max-width: 425px) {
    .block-of-channel-wrapper {
        min-width: 100%;
        justify-content: center;
    }

    .block-of-channel {
        flex-direction: column;
        align-items: center;
    }

    .tooltip-wrapper {
        bottom: 160px;
    }

    .tooltip-triangle {
        left: 120px;
    }

    .tooltip-triangle-2 {
        left: 119px;
    }
}