@-webkit-keyframes animatezoom {
    0% {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    0% {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

button,input,select {
    -webkit-appearance: none;
    border-radius: 0
}

* {
    margin: 0;
    padding: 0
}

body,html {
    width: 100%;
    height: 100%
}

body {
    min-height: 100vh;
    overflow-x: hidden
}

.scroll-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center
}

.scroll-wrapper::-webkit-scrollbar {
    height: 8px
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #27910a;
    border-radius: 4px
}

html {
    background-color: #000;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden
}

.cd-button,img {
    vertical-align: middle
}

.cd-button,a {
    text-decoration: none
}

a:active,a:hover {
    outline: 0;
    color: #007acd;
    text-decoration: underline
}

.cd-button,.tooltip {
    display: inline-block;
    cursor: pointer
}

*,:after,:before {
    box-sizing: inherit
}

body {
    margin: 2
    background-color: transparent;
    padding: 2
}

b {
    font-weight: bolder
}

small {
    font-size: 80%
}

img {
    border-style: none
}

table {
    border-radius: 5px
}

button,input,select {
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    font-family: inherit;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring {
    outline: ButtonText dotted 1px
}

::-webkit-file-upload-button {
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    font-family: inherit
}

body,html {
    font: 15px/1.5 Verdana,sans-serif
}

h2 {
    margin: 2px 0;
    font: 400 30px"Segoe UI",Arial,sans-serif
}

model-viewer {
    border: 2px solid #27910a;
    border-radius: 10px;
    height: 290px;
    margin: auto;
    position: relative;
    width: 270px
}

.cd-button {
    background-color: inherit;
    border: 0;
    color: inherit;
    overflow: hidden;
    padding: 8px 16px;
    text-align: center;
    white-space: nowrap
}

.cd-button:disabled {
    cursor: not-allowed;
    opacity: .3;
    text-align: center
}

.cd-sidebar {
    left: 0;
    margin-left: 0;
    margin-top: 0;
    background: #f6f5f4;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    width: 95px;
    max-height: 100vh;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.19);
    border: 2px solid #27910a;
    background: #fff;
    border-radius: 20px;
    z-index: 1000
}

.image-box,.product-image,.product-item,.tooltip {
    position: relative
}

.cd-bar-block .cd-bar-item {
    border: 0;
    display: block;
    float: none;
    outline: 0;
    padding: 4px 1px;
    text-align: center;
    white-space: normal;
    width: 100%;
    border-radius: 5px
}

.cd-container,.image-box,hr {
    border: 2px solid #27910a;
    background: #fff
}

.cd-container:after,.cd-container:before {
    clear: both;
    content: "";
    display: table;
    padding: 1px
}

.cd-container {
    padding: 2px;
    background: #f6f5f4;
    box-shadow: 0 1px 5px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.19);
    border-radius: 20px
}

.cd-card {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)
}

.cd-animate-zoom {
    animation: .8s animatezoom
}

.cd-padding {
    background-color: #fff;
    color: #000;
    padding: 2px;
    width: 99%
}

.cd-padding2 {
    background-color: #bb3434;
    color: pink;
    padding: 1px
}

.cd-button:hover {
    background-color: #ccc;
    color: #000;
    text-align: center
}

.cd-black {
    background-color: #000;
    color: #fff
}

.image-box {
    border-radius: 5px;
    margin: auto;
    overflow: hidden;
    width: 240px
}

.image-box img,.product-image img {
    display: block;
    height: auto;
    max-width: 100%;
    transform: scale(1);
    transition: .3s;
    width: 100%
}

.image-box:hover img {
    transform: scale(1.1);
    cursor: pointer
}

a {
    color: #007acd;
    background-color: transparent
}

a:hover {
    cursor: pointer
}

.product-item {
    border: 2px solid #27910a;
    border-radius: 10px;
    min-height: 2px;
    line-height: 10px;
    width: 99%;
    padding: 10px 2px;
    background: #fff
}

.product-image {
    border-radius: 10px;
    overflow: hidden;
    width: 280px
}

.product-image:hover img {
    transform: scale(2);
    cursor: pointer
}

.tooltip {
    border-bottom: 1px dotted #000
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity .3s;
    font-size: 12px
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1
}

.horizontal-scroll-container {
    margin: 2px auto;
    max-width: 100%;
    padding: 2px
}

.scroll-controls {
    display: flex;
    align-items: center;
    gap: 2px
}

.scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 7px 0;
    scroll-behavior: smooth
}

.scroll-content {
    display: inline-flex;
    gap: 10px
}

.scroll-content .product-card {
    display: inline-block;
    width: 120px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 2px;
    cursor: pointer;
    transition: transform .2s
}

.scroll-content .product-card:hover {
    transform: scale(1.1);
    border: 2px solid #27910a
}

.scroll-content .product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px
}

.scroll-content .product-card p {
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 700
}

.scroll-button {
    background: #ccc;
    border: 2px;
    padding: 2px;
    cursor: pointer;
    border-radius: 20%;
    font-size: 24px
}

.scroll-button:hover {
    transform: scale(1.1);
    background: #bbb
}

.price-box {
    background-color: #f6fff6;
    border: 2px solid #27910a;
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-block;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.1)
}

.paypal-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap
}

.paypal-form input[type=number] {
    margin-right: 10px
}

.footer {
    margin-top: 10px;
    padding: 10px;
    font-size: 12px;
    color: #666
}

.transceiver-thumbnail-container {
    margin: 10px 0;
    text-align: center
}

.transceiver-thumbnail {
    max-width: 100px;
    border: 3px solid #ccc;
    border-radius: 4px;
    padding: 2px;
    display: inline-block
}

.transceiver-thumbnail:hover {
    transform: scale(1.2);
    cursor: w-resize;
    border: 3px solid #27910a
}
