:root {
    --danger-color: #dc3545;
    --danger-shadow: rgba(220, 53, 69, .25);
}
/* to move */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.outer_circle {
    stroke-width: 3;
    stroke-dasharray: 410;
    stroke-dashoffset: 0;
    stroke-linecap: square;
    transition: all .4s ease-out;
}

.ytb:hover .outer_circle {
    stroke-dashoffset: 410;
    transition: stroke .7s .4s ease-out, stroke-dashoffset .4s ease-out
}

.ytb:hover .inner-circle {
    fill: #BF2428;
    fill: var(--bs-primary);
    transition: fill .4s .3s ease-out;

}

path.play {
    fill: var(--bs-primary);
}

.ytb:hover .play {
    fill: white;
    transition: fill .4s .3s ease-out;
}

.ytb {
    position: relative;
}

.ytb svg {
    width: 25%;
    max-width: 250px;
}

.play-overlay {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 220ms ease-out;
}

.play-overlay:hover {
    background-color: rgba(0, 0, 0, .25);
}

.imggal.gallery .imggal--wrapper {
    position: relative;
    overflow: hidden;
}

.imggal.gallery .imggal--wrapper .swiper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.gallery-thumbnails .gallery-thumbnails--item {
    width: calc(20% - 10px);
    margin: 5px;
    cursor: pointer;
}


.btn-variation {
    transition: opacity 220ms ease-out;
    opacity: .6 !important;
}

.btn-variation:disabled, .btn-variation:hover {
    opacity: 1 !important;

}

.pricing-promotion-container {
    text-decoration: line-through;
}


/* Style the list */
ul.breadcrumb {
    padding: .5rem;
    list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: .8rem;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    text-decoration: underline;
}

/* invalid state in form */
form.form-class input:not(.btn).is-invalid {
    border-color: var(--danger-color);
}

form.form-class input:not(.btn).is-invalid:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 2px var(--danger-shadow);
}


.invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: var(--danger-color);
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-zoom-in {
    cursor: zoom-in;
}

.cursor-zoom-out {
    cursor: zoom-out;
}


p {
    margin: 0 !important;
    padding-bottom: 1rem;
}

a p {
    margin: 0;
    padding: 0;
}