/* EKP CSS */

/* Image and points */
.image_wrapper {
    position: relative;
}

.image_wrapper img {
    width: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
}

.exploration_clear_gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/*  */
.mt-snippet-box-wrapper .image_wrapper {
    background: white;
}
.mt-snippet-box-wrapper .image_wrapper.snippet-style-minimal,
.mt-snippet-box-wrapper .image_wrapper.snippet-style-minimal-with-point {
    border-radius: 14px;
    overflow: hidden;
}
.mt-snippet-box-wrapper.size-150-150 .image_wrapper {
    width: 150px;
    height: 150px;
}

.mt-snippet-box-wrapper.size-80-80 .image_wrapper {
    width: 80px;
    height: 80px;
}

.mt-snippet-box-wrapper.size-330-250 .image_wrapper {
    width: 330px;
    height: 250px;
}
/* 
.mt-snippet-box-wrapper.size-462-350 .image_wrapper {
    width: 462px;
    height: 350px;
} */

.mt-snippet-box-wrapper .image_wrapper img.exploration_clear {
    background-size: cover;
    border-right: 1px solid #cfcfcf;
    border-radius: 14px !important;
}
.mt-snippet-box-wrapper .image_wrapper img.exploration_clear {
    background-size: cover;
}
.mt-snippet-box-wrapper .image_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 1px;
    width: 18px;
    height: 100%;
    pointer-events: none;
    border-radius: 0 14px 14px 0;
    background: linear-gradient(to left, rgb(0 0 0 / 15%), rgba(0, 0, 0, 0));
}

.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point {
    width: 38px;
    height: 38px;
}

.mt-snippet-box-wrapper.point-style-crosshair-svg.size-80-80 .image_wrapper .point {
    width: 22px;
    height: 22px;
    opacity: 0.7;
}
.mt-snippet-box-wrapper.point-style-crosshair-svg.size-80-80 .image_wrapper .point svg.crosshair circle {
    stroke-width: 1px;
}

.mt-snippet-box-wrapper {
    max-width: 800px;
}

.mt-snippet-box-wrapper .image_wrapper .point {
    position: absolute;
    z-index: 1020;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

.mt-snippet-box-wrapper .image_wrapper .point_number {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}
.mt-snippet-box-wrapper .point_center,
.mt-snippet-box-wrapper .point_selected {
    display: none;
}
/* POINT CENTER */

.mt-snippet-box-wrapper.point-style-point-center .image_wrapper .point {
    width: 32px;
    height: 32px;
}
.mt-snippet-box-wrapper.point-style-point-center .image_wrapper .point_number {
    display: none;
}

.mt-snippet-box-wrapper.point-style-point-center .point_center {
    display: block;
}
.mt-snippet-box-wrapper .point_center {
    position: absolute;

    width: 60%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255 0 0 / 60%);
    border-radius: 100%;
}
/* CROSSHAIR */
.mt-snippet-box-wrapper.point-style-crosshair .image_wrapper .point {
    width: 32px;
    height: 32px;
}
.mt-snippet-box-wrapper.point-style-crosshair .image_wrapper .point_number {
    display: none;
}

.mt-snippet-box-wrapper.point-style-crosshair .point_selected {
    display: none;
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0px;
    left: 0px;

    background-image: url(/wp-content/plugins/meditricks-exploration-images/assets/selected_bgr.png);
    background-size: 100% 100%;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0.6;
}
.mt-snippet-box-wrapper.point-style-crosshair .image_wrapper .point_selected {
    display: block;
}
/* CROSSHAIR SVG */
.mt-snippet-box-wrapper.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point_selected,
.mt-snippet-box-wrapper.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point_number {
    display: none;
}
.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point svg.crosshair,
.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point_center {
    display: block;
}
.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point_center {
    width: 46%;
    height: 46%;
    background-color: rgb(255 255 255 / 39%);
    box-shadow:
        0px 0px 6px hsl(0deg 0% 0% / 24%),
        inset 0px 0px 4px hsl(0deg 0% 0% / 27%);
    border: 4px solid rgb(233 0 0);
}
.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point svg.crosshair {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.mt-snippet-box-wrapper.point-style-crosshair-svg .image_wrapper .point svg.crosshair circle {
    cx: 50%;
    cy: 50%;
    r: 40%;

    stroke-width: 5px;
    stroke-dasharray: 18%;
    /* stroke-dasharray: 32%; */
    stroke-dashoffset: -5px;

    stroke-dasharray: 16%;
    stroke-dashoffset: -26px;

    stroke-dasharray: 25%;
    stroke-dashoffset: -34px;

    fill: none;
    stroke: rgb(27 84 149);
    stroke: rgb(233 0 0);
}

/* */

.image_section-fullscreen-controls {
    position: absolute;
    z-index: 1022;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.controls-button {
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.image_section-fullscreen-controls:hover .controls-button {
    opacity: 1;
}

.mt-snippet-box-menu-MT-item-content-container {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    flex-basis: 200px;

    background: white;

    border: 1px solid #b4b4b4;
    border-left-width: 0px;
}

.mt-snippet-box-tabcontents {
    border: 1px solid gray;
    position: relative;
}
.mt-snippet-box-wrapper.snippet-style-minimal .mt-snippet-box-tabcontents {
    border: none;
}

.mt-snippet-box-tabcontents-cont {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /*max-height: 352px; */
}

.mt-snippet-box-tabcontents-cont > div {
    max-height: inherit;
}

.mt-snippet-box-tabcontents-menu {
    width: fit-content;
    background: white;
    border: 1px solid #b4b4b4; /* gray; */
    border-left-width: 0px;
}
.mt-snippet-box-menu-container {
    height: 100%;
}

.mt-snippet-box-menu-MT-container {
    display: flex;
    gap: 3px;
    height: 100%;
    flex-direction: column;
    background: rgb(240 239 240);
}

.mt-snippet-box-menu-MT-item {
    /*
    flex: unset !important; */

    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0.1em;
    /*
    border: 1px solid gray;*/
}
.mt-snippet-box-menu-MT-item-content {
    flex: 100%;
    padding-top: 1em;
    padding: 1em;
    padding-top: 10px;
    height: 100%;

    /*
    max-height: 310px;*/
    overflow: scroll;
    text-overflow: ellipsis;
}

.mt-snippet-box-menu-MT-item-content::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
}

.mt-snippet-box-menu-MT-item-content::-webkit-scrollbar-thumb {
    background-color: #e4e4e4;
}
.mt-snippet-box-menu-MT-item-content .text_line.description {
    line-height: 20px !important;
}

.mt-snippet-box-menu-MT-item:hover {
}
.mt-snippet-box-menu-MT-item-content-row {
    padding: 0.5em;
    /*
    border: 1px solid gray;*/
}
.mt-snippet-box-menu-MT-item-title-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.25em;
}
.mt-snippet-box-menu-MT-item-title {
    color: gray;
    font-weight: bold;
    font-size: 1.1em;
}

.mt-snippet-box-menu-MT-item-mtf {
}
.mt-snippet-box-menu-MT-points-container {
    padding-top: 0.25em;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.mt-snippet-box-menu-points-item {
    /* border: 1px solid gray; */
    border-radius: 7px;
    background: #f2f2f2;
    color: rgb(73, 73, 73);
    font-weight: bold;
}

.mt-snippet-box-point-button {
    display: block;
    width: 100%;
    margin: 0px;
    height: 100%;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #f2f2f2;
    border: 1px solid gray;
    outline: none;
    color: rgb(96 96 96);
    font-weight: bold;
    font-size: 18px;
    padding: 0px;
}

.mt-snippet-box-point-button.button-multiple {
    height: auto;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}
.mt-snippet-box-menu-points-item:not(.item-active) .mt-snippet-box-point-button > * {
    padding: 2px;
}
.mt-snippet-box-point-button-subsnippet {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt-snippet-box-point-button-subsnippet-bullet {
    border-radius: 50%;
    height: 12px;
    width: 12px;

    border: 3px solid gray;
}
.mt-snippet-box-point-button-subsnippet.item-active .mt-snippet-box-point-button-subsnippet-bullet {
    /*   background: #eac8ae;*/
    background: #ca5c5c;
    border-color: #ca5c5c;
}
.mt-snippet-box-point-button-subsnippet:not(.first-item):hover {
    background: #cfcfcf;
    border-color: #ca5c5c;
}

a:hover .mt-snippet-box-point-button-subsnippet.first-item {
    background: #cfcfcf;
}
a:hover .mt-snippet-box-point-button-subsnippet-bullet,
.mt-snippet-box-point-button-subsnippet-bullet:hover {
    border-color: #ca5c5c;
}
.mt-snippet-box-point-button.inactive {
    cursor: initial;
}

.mt-snippet-box-point-button a {
    color: unset;
    display: block;
    position: relative;
    top: -1px;
}

.item-active .mt-snippet-box-point-button a {
    position: relative;
    top: -1px;
}
.mt-snippet-box-point-button.button-multiple > a:hover {
    background: #cfcfcf;
    color: #ca5c5c;
}
.mt-snippet-box-point-button.button-multiple .mt-snippet-box-point-button-subsnippet a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.mt-snippet-box-point-button:not(.inactive):not(.button-multiple):hover {
    background: #cfcfcf;
}
.mt-snippet-box-menu-points-item.item-active .mt-snippet-box-point-button {
    background: #eac8ae;
    /*font-weight: bolder;*/
    border: 3px solid #ca5c5c;
}

.mt-snippet-box-mtnamebox {
    position: absolute;
    bottom: 0px;
    left: 0;
    padding-left: 5px;
    width: auto;
    padding-right: 0px;
    min-height: 45px;

    z-index: 1000000;
}
.mt-snippet-box-mtnamebox:hover {
    width: 100%;
}

.mt-snippet-box-mtnamebox * {
    transition: 0.2s;
}

.mt-snippet-box-mtnamebox .mt-snippet-box-mtnamebox-container {
    display: flex;
    gap: 5px;
    border-top-left-radius: 15px;
    cursor: pointer;
}

.mt-snippet-box-mtnamebox:hover .mt-snippet-box-mtnamebox-container {
    background: #e7e09d;
    box-shadow: 0 0em 0.375em 0 rgba(0, 0, 0, 0.175);
}
.mt-snippet-box-mtnamebox-text-title {
    font-weight: bold;
}
.mt-snippet-box-mtnamebox-text-container {
    display: none;
    flex-direction: column;
    padding-bottom: 5px;
    opacity: 0;
    user-select: none;
}
.mt-snippet-box-mtnamebox:hover .mt-snippet-box-mtnamebox-text-container {
    opacity: 1;
    display: flex;
}

.mt-snippet-box-mtnamebox-img-container {
    padding: 5px;
}
.mt-snippet-box-mtnamebox img {
    width: 30px;
    height: 30px;
    max-width: none;
    border-radius: 50%;
    box-shadow: 0 0.125em 0.375em 0 rgba(0, 0, 0, 0.175);
}

.mt-snippet-box-mtnamebox-text-title {
    line-height: 25px;
}
.mt-snippet-box-mtnamebox-text-subtitle {
    color: #45818e;
    line-height: 15px;
    position: relative;
    top: -3px;
}

.mt-snippet-box-wrapper .text_line.cat .text_line_content {
    flex-wrap: wrap;
}
