@charset "UTF-8";


/* Spec Table */
.style1 {
    padding-right: 10px;
    color: #201f20;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
}

.style2 {
    padding-left: 10px;
    color: #201f20;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4em;
}

.spectable tr:nth-child(even) {
    background: #fff;
}

.spectable tr:nth-child(odd) {
    background: #ccc;
}

/* Icon Style */
.icontitle1,
.icontitle2 {
    color: #201f20;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
}

.icontitle1 {
    padding: 10px 0 15px;
}

.icontitle2 {
    padding: 10px 0 25px;
}

.box1 {
    padding: 10px 0;
}

.box2 {
    padding: 30px 0;
}

/* Interchangeable Icon Style */
.idt-icon {
    display: inline-block;
    margin: 0;
    padding: 0 0 10px;
    overflow-x: auto;
}

.idt-icon li {
    display: block;
    float: left;
    padding: 5px;
    list-style: none;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 768px) {
    .box1 {
        left: -50%;
        float: left;
        margin: 10px 5px;
        padding: 0 0 15px;
    }

    .box2 {
        margin: 5px 0;
    }

    .idt-icon {
        padding: 0 30px;
    }

    .idt-icon li ul {
        position: relative;
        display: inline-block;
    }

    .idt-icon li {
        left: 0;
        float: left;
        padding: 15px 10px;
        list-style: none;
    }
}

/* Quick Link Button */
.quick-btn {
    position: relative;
    display: inline-block;
    padding: 15px;
    border: 2px solid #000;
    border-radius: 10px;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-11 {
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-11:hover {
    color: #fff;
    background: #000;
}

.btn-11::before {
    position: absolute;
    top: -180px;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 100%;
    background-color: #fff;
    content: "";
    animation: shiny-btn1 3s ease-in-out infinite;
}

.btn-11:active {
    box-shadow:
        4px 4px 6px 0 rgba(255, 255, 255, 0.3),
        -4px -4px 6px 0 rgba(116, 125, 136, 0.2),
        inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

/* Glow Border */
.glow2 {
    display: inline-block;
    border: 1px solid #363636;
    border-radius: 0.5em;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    transition-duration: 0.3s;
    transition-property: box-shadow;
}

/* Glow */
.glow {
    display: inline-block;
    border-radius: 0.5em;
    box-shadow: 0 0 1px rgba(156, 156, 156, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    transition-duration: 0.3s;
    transition-property: box-shadow;
}

.glow:hover {
    box-shadow: 0 0 8px rgba(156, 156, 156, 0.7);
}

/* Box Shadow Outset */
.box-shadow-outset {
    display: inline-block;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    transition-duration: 0.3s;
    transition-property: box-shadow;
}

.box-shadow-outset:hover {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Sink */
.sink {
    display: inline-block;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    transition-duration: 0.3s;
    transition-property: transform;
}

.sink:hover {
    transform: translateY(5px);
}

/* Hover Float */
@keyframes hover {
    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(-6px);
    }
}

.hover {
    display: inline-block;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    transition-duration: 0.5s;
    transition-property: transform;
}

.hover:hover {
    transform: translateY(-6px);
    animation-name: hover;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Shadow Radial */
.shadow-radial {
    position: relative;
    display: inline-block;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
}

.shadow-radial::before,
.shadow-radial::after {
    position: absolute;
    left: 5px;
    width: 90%;
    height: 5px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.3s;
    transition-property: opacity;
}

.shadow-radial::before {
    bottom: 100%;
    background: radial-gradient(
        ellipse at 50% 150%,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 80%
    );
}

.shadow-radial::after {
    top: 100%;
    background: radial-gradient(
        ellipse at 50% -50%,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 80%
    );
}

.shadow-radial:hover::before,
.shadow-radial:hover::after {
    opacity: 1;
}

/* Image Fade In */
.wrapper {
    position: relative;
}

.imgfadein {
    transition: all 0.5s ease-in-out;
}

.textfadein {
    position: absolute;
    top: 50%;
    left: 0;
    display: table;
    width: 100%;
    margin-top: -10px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.imgfadein:hover img {
    opacity: 0.3;
}

.imgfadein:hover .textfadein {
    opacity: 1;
}

/* Hide on Phone */
.hide-in-phone {
    display: none;
}

@media screen and (min-width: 900px) {
    .hide-in-phone {
        display: block;
    }
}

/* Hide on Desktop */
.hide-in-screen {
    display: none;
}

@media screen and (max-width: 901px) {
    .hide-in-screen {
        display: block;
    }
}

/* CP Icon Shake */
.shakebutton1 {
    transition: transform 0.3s ease;
}

.shakebutton1:hover,
.shakebutton1:focus,
.shakebutton1:active {
    cursor: pointer;
    transform: scale(0.9);
}

/* YouTube Responsive Video */
.videobox {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.videobox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hover Change Image */
.box3 {
    position: relative;
    top: 50px;
    width: 100%;
    height: 100%;
}

.box3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.img-top {
    z-index: 99;
    display: none;
}

.box3:hover .img-top {
    display: inline;
}

.ta02 {
    width: 100%;
    padding: 0 5px;
}

.ta02:hover img {
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 400px) {
    .ta02 {
        width: 100%;
        padding: 0;
    }
}

/* Note Font Style */
.notestyle01 {
    color: #0066ff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

/* Note List Style */
.notestyle02 li {
    margin-bottom: 0;
    padding: 5px 0;
    list-style: inside;
}

.notestyle03 li {
    margin-bottom: 0;
    padding: 5px 0;
}

.notestyle03 li::before {
    padding-right: 15px;
    color: #189a2e;
    font-size: 18px;
    font-weight: bold;
    content: "✔";
}

/* Reviews and Related Articles Image */
.img-fluid {
    width: 100% !important;
    height: auto;
}

/* Product Details List */
.f-ul,
.f-ul2 {
    padding-left: 0;
    list-style: none;
}

.f-ul li,
.f-ul2 li {
    position: relative;
    padding-left: 1.2em;
    color: #000;
}

.f-ul li {
    margin: 5px 0;
}

.f-ul2 li {
    margin: 2px 0;
}

.f-ul li::before,
.f-ul2 li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    content: "●";
}

.f-ul li::before {
    color: #ec6500;
}

.f-ul2 li::before {
    color: #1e1e1e;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    max-width: 966px;
    padding: 16px;
    border: 1px solid #ff8c00;
    border-radius: 6px;
    background-color: #f5f5f5;
    line-height: 1.5;
}

.icon-container {
    display: flex;
    align-items: center;
    margin-top: 2px;
    margin-right: 12px;
}

.info-content {
    color: #333;
}

.info-content ul {
    max-width: 100% !important;
}

/* Custom Cable Section */
.custom-cable-section {
    margin: 40px auto;
    padding: 32px 36px;
    border-top: 4px solid #ff7800;
    border-radius: 20px;
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
}

.custom-cable-title {
    margin: 0 0 20px;
    color: #222;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.custom-cable-content {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.custom-cable-content p {
    margin: 0 0 18px;
}

/* Custom Cable Link */
.custom-cable-content p a {
    color: #2f73d9;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.custom-cable-content p a:hover {
    color: #ff7200;
}

/* Custom Cable Mobile */
@media screen and (max-width: 600px) {
    .custom-cable-section {
        margin: 28px auto;
        padding: 25px 20px;
    }

    .custom-cable-title {
        font-size: 22px;
    }

    .custom-cable-content {
        font-size: 15px;
        line-height: 1.65;
    }
}
