/* Minification failed. Returning unminified contents.
(11,35): run-time error CSS1039: Token not allowed after unary operator: '-gray-border-25'
(25,17): run-time error CSS1039: Token not allowed after unary operator: '-gray-text'
(36,17): run-time error CSS1039: Token not allowed after unary operator: '-black-text'
(38,23): run-time error CSS1039: Token not allowed after unary operator: '-font-medium'
(47,28): run-time error CSS1039: Token not allowed after unary operator: '-green-normal'
(67,17): run-time error CSS1039: Token not allowed after unary operator: '-gray-border'
(73,17): run-time error CSS1039: Token not allowed after unary operator: '-black-text'
 */
/**/
#datasheets {
    padding: 75px 0;
}
#datasheets .empty-message {
    text-align: center;
}
/*TABS*/
#datasheets .swiper-container {
    align-items: center;
    border-bottom: 1px solid var(--gray-border-25);
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
}
#datasheets .swiper-slide {
    text-align: center;
    margin: 0 4rem;
    padding: 1rem 0;
    position: relative;
    width: auto;
    z-index: 0;
}
#datasheets .swiper-container .swiper-link {
    color: var(--gray-text);
    font-size: 0.875rem;
    padding: 0;
}
    #datasheets .swiper-container .swiper-link:hover {
        cursor: pointer;
    }
#datasheets .swiper-container .swiper-link:first-child {
    padding-left: 0;
}
#datasheets .swiper-container .swiper-link.active {
    color: var(--black-text);
    font-size: 1rem;
    font-weight: var(--font-medium);
}
#datasheets .swiper-container .swiper-link:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -1px;
    margin: auto;
    margin-top: auto;
    background-color: var(--green-normal);
    opacity: 0;
    height: 3px;
    width: 0;
    -webkit-transition: all .3s linear 0ms;
    -khtml-transition: all .3s linear 0ms;
    -moz-transition: all .3s linear 0ms;
    -ms-transition: all .3s linear 0ms;
    -o-transition: all .3s linear 0ms;
    transition: all .3s linear 0ms;
}
#datasheets .swiper-container .swiper-link.active:after,
#datasheets .swiper-container .swiper-link:hover:after {
    opacity: 1;
    width: calc(100%);
}
#datasheets .swiper-button-prev,
#datasheets .swiper-button-next {
    align-items: center;
    background: #FFFFFF;
    color: var(--gray-border);
    display: flex;
    justify-content: center;
}
#datasheets .swiper-button-next:hover,
#datasheets .swiper-button-prev:hover {
    color: var(--black-text);
}
#datasheets .swiper-button-prev {
    left: 0;
}
#datasheets .swiper-button-next {
    right: 0;
}
/*END TABS*/
/*DATASHEET BOX*/
#datasheets .datasheet-box {
    align-items: center;
    border: 1px solid #000;
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-between;
    padding: 2rem;
}
#datasheets .datasheet-box .datasheet-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 100%;
}
#datasheets .datasheet-box .datasheet-details {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
}
#datasheets .datasheet-box .datasheet-details  .datasheet-title {
    color: #2D2D2D;
    margin: 1rem 0;
    text-align: center;
    text-transform: uppercase;
}
/*END DATASHEET BOX*/
