/* TODO(WEBSITE): Rework this and include in main core-theme.scss */
/*==== Cookies policy note box displayed on the bottom of website when acc variable from consent_storage cookie is set to 0 ====*/

.no-wrap {
    white-space: nowrap;
}

/* Selectors for desktop version */
.cookies-box {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(40, 40, 40, 0.6);
    overflow: hidden;
    display: none;
    box-sizing: border-box;
}

.cookies-box-bar {
    position: fixed;
    z-index: 9998;
    bottom: 0;
    width: 100vw;
    height: 180px;
    border-top: 5px solid #C11417;
    font-size: 14px;
    transition: height 1s;
    background-color: white;
    padding-left: 0;
    box-sizing: border-box;
}

.cookies-box-bar .cookies-box-content {
    height: 100%;
    margin: 20px auto;
    width: 100%;
    max-width: 680px; /* 650 + 2x padding */
    padding: 0 15px;
    box-sizing: border-box;
}

.cookies-box-bar.extended {
    height: 70vh;
    transition: height 1s;
    overflow-y: scroll;
}

.cookies-box-bar .cookies-box-content .cookies-box-header {
    font-size: 16px;
    padding: 10px 0;
}

.cookies-box-bar .cookies-box-content .cookies-box-text {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2rem;
    display: block;
    margin-bottom: 0;
}

.cookies-box-bar .cookies-box-content p.cookies-box-text {
    margin-bottom: 0;
}

.cookies-box-bar .cookies-box-content .cookies-box-text .privacy {
    font-size: 14px !important;
}

.cookies-box-bar .cookies-box-content .cookies-box-text .privacy:hover {
    cursor: pointer;
}

.cookies-box-bar .cookies-box-content .cookies-buttons {
    margin-top: 17px;
    display: inline-flex;
    margin-bottom: 30px;
}

.cookies-box-bar .cookies-box-content .cookies-buttons .cookies-btn, .cookies-btn-text {
    display: block;
    min-height: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    margin-right: 10px;
    text-align: center;
}

.cookies-box-bar .cookies-box-content .cookies-buttons .cookies-btn, .cookies-btn-text:hover {
    cursor: pointer;
}

.cookies-box-bar .cookies-box-content .cookies-buttons .cookies-btn {
    background: linear-gradient(to bottom,rgba(197,27,30,1) 0%,rgba(178,23,25,1) 45%,rgba(167,20,21,1) 100%);
    border: 1px solid #990000;
    box-shadow: 0 0 3px #dd0000 inset, 0 1px 1px rgb(0 0 0 / 10%);
}

.cookies-box-bar .cookies-box-content .cookies-buttons .cookies-btn-text {
    color: #0a56c8;
    align-self: self-end;
}

.cookies-box-bar .cookies-box-content .cookies-buttons .cookies-btn.accept_all {
    margin-left: 10px;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended {
    display: block;
    opacity: 0;
    transition: opacity .5s;
}

.cookies-box-bar.extended .cookies-box-content .cookies-content-extended {
    opacity: 1;
    transition: opacity .5s;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group {
    padding: 5px 0;
    margin-bottom: 10px;
}

.cookie-group label {
    cursor: pointer;
    padding-left: 10px;
}

/* PREVENT ZOHO-FORM STYLES OVERWRITE */
.cookie-group label.group-title {
  transform: none;
  transition: none;
  font-size: inherit !important;
  display: inline-block;
  font-weight: bold;
}

.cookie-group #cookie_essential + label {
    cursor: not-allowed;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group span {
    vertical-align: top;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .cookie_input {
    margin: auto;
    height: auto;
    top: auto;
    transform: scale(1.2);
    accent-color: #C11417;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .cookie-info {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.1rem;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .show-details {
    margin-top: 10px;
    font-size: 12px;
    color: #1c49ad;
    width: 100%;
    max-width: 95px;
    white-space: nowrap;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .show-details:hover {
    cursor: pointer;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .divider {

}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #1c49ad;
    border-left: 1px solid #1c49ad;
    margin-left: 5px;
    pointer-events: none;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .arrow:before {
    content: "";
    transform: rotate(45deg);
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .arrow.down {
    transform: rotate(-135deg);
    right: 175px;
    margin-top: -1px;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .arrow.up {
    transform: rotate(45deg);
    left: 175px;
    margin-top: 4px;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .divider {
    margin-top: 20px;
    margin-bottom: 5px;
    width: 100%;
    border-top: 1px dotted black;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details {
    justify-content: space-evenly;
    height: 0;
    overflow: hidden;
    transition: height .2s;
    width: 90%;
    margin: 20px auto 10px auto;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details .cookie {
    padding: 2px 5px;
    margin: 5px 0;
    width: 33%;
    white-space: nowrap;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details .cookie span {
    padding-left: 10px;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details .cookie span:hover {
    cursor: pointer;
}

.cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details.toggled {
    transition: height .2s;
}
/* End desktop selector section */

/* Selectors for mobile version */
.cookies-box-bar.mobile {
    height: 50vh;
}

.cookies-box-bar.mobile .cookies-box-content {
    height: 100%;
    margin: 30px auto;
}

.cookies-box-bar.mobile.extended {
    height: 75vh;
}

.cookies-box-bar.mobile .cookies-box-content .cookies-buttons {
    margin-top: 3vh;
    display: block;
    margin-bottom: 30px;
}

.cookies-box-bar.mobile .cookies-box-content .cookies-buttons .cookies-btn {
    margin: 0 10px 10px;
}

.cookies-box-bar.mobile .cookies-box-content .cookies-buttons .cookies-btn.manage {
    margin-right: 10px;
}

.cookies-box-bar.mobile .cookies-box-content .cookies-content-extended {
    padding-bottom: 20px;
}

/* End mobile selector section */

/* Plugs */
.gartner-plug {
    line-height: 1rem;
    width: 65%;
    margin: 0 auto;
    height: 100%;
    background-color: #F3F3F3;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(243, 243, 243, 1);
    -moz-box-shadow: 0px 0px 5px 3px rgba(243, 243, 243, 1);
    box-shadow: 0px 0px 5px 3px rgba(243, 243, 243, 1);
}

.gartner-plug .logo-bar {
    height: 75%;
    background-color: #FFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.gartner-plug .logo-bar .imgs {
    position: relative;
    height: 70%;
}

.gartner-plug .logo-bar .desc {
    height: 30%;
    width: 90%;
    display: flex;
    margin: 0 auto;
}

.gartner-plug .cookies-bar {
    height: 25%;
    margin: 0 auto;
    width: 90%;
    display: flex;
    align-items: center;
}

/* Utils */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.height0 {
    height: 0 !important;
}

.cookieBox:hover {
    cursor: pointer;
}
/* End utils */
/*==== END ====*/


/* Responsive for desktop */
@media only screen and (max-width: 800px)  {
    .cookies-box-bar .cookies-box-content {
        margin: 10px auto !important;
    }
}
@media screen and (max-width: 700px) {
    .cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details ._row {
        display: block;
    }
    .cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details.toggled {
        height: 80px;
    }
    .cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details.toggled.r2 {
        height: 130px;
    }
}
@media screen and (min-width: 701px) {
    .cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details ._row {
        display: flex;
    }
    .cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details.toggled {
        height: 30px;
    }
    .cookies-box-bar .cookies-box-content .cookies-content-extended .cookie-group .details.toggled.r2 {
        height: 60px;
    }
}
@media screen and (max-width: 670px) {
    .cookies-box-bar .cookies-box-content .cookies-buttons {
        margin-top: 15px;
    }
    .cookies-box-bar {
        height: 195px;
    }
    .cookies-box-bar.mobile {
        min-height: 240px;
    }
}
@media screen and (max-width: 520px) {
    .cookies-box-bar {
        height: 210px;
    }
    .cookies-box-bar.mobile {
        min-height: 255px;
    }
}
@media screen and (max-width: 425px) {
    .cookies-box-bar {
        height: 225px;
    }
    .cookies-box-bar.mobile {
        min-height: 270px;
    }
}
@media screen and (max-width: 355px) {
    .cookies-box-bar {
        height: 240px;
    }
    .cookies-box-bar.mobile {
        min-height: 267px;
    }
}
@media screen and (max-width: 325px) {
    .cookies-box-bar .cookies-box-content {
        margin: 0px auto !important;
    }
    .cookies-box-bar .cookies-box-content .cookies-box-header {
        font-size: 15px;
    }
    .cookies-box-bar .cookies-box-content .cookies-box-text,
    .cookies-box-bar .cookies-box-content .cookies-box-text a.privacy {
        font-size: 13px !important;
    }
}
@media screen and (max-width: 290px) {
    .cookies-box-bar .cookies-box-content {
        margin: 0px auto !important;
    }
    .cookies-box-bar .cookies-box-content .cookies-box-header {
        font-size: 12px;
    }
    .cookies-box-bar .cookies-box-content .cookies-box-text {
        font-size: 11px;
    }
}
@media screen and (max-height: 430px) {
    .cookies-box-bar.mobile {
        min-height: 260px;
    }
}
@media screen and (max-height: 270px) and (max-width: 520px), (max-height: 270px), (max-width: 300px) {
    .cookies-box-bar {
        height: 215px;
    }
    .cookies-box-bar.mobile {
        min-height: 230px;
    }
    .cookies-box-bar .cookies-box-content .cookies-box-header {
        font-size: 13px;
    }
    .cookies-box-bar .cookies-box-content .cookies-box-text,
    .cookies-box-bar .cookies-box-content .cookies-box-text a.privacy {
        font-size: 11px !important;
    }
}
/* End responsive section */

/* Needed for script getting scrollbar-width */
.box-for-scrollbar-test {
    visibility: hidden;
    overflow: scroll;
    position: absolute;
    top: -999px;
    left: -999px;
}
.wrapper-website > .main-section {
    box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
    .antiblink {
        padding: 0 !important;
    }
}
/*************/