/* Component style */

.audio-slideshow {
    display: inline-block;
    width: 940px;
    min-width: 940px;
    position: relative;
    margin: 10px auto;
    max-width: 100%;
    text-align: left;
    /*    left: 50%;
        transform: translateX(-50%);*/
}

.audio-slideshow .audio-slideshow-content {
    position: relative;
    height: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0px;
    padding: 15px;
    height: 570px;
    overflow: auto;
}

.audio-slideshow .audio-slideshow-title{
    padding:  4px 10px;
    background: #E63188;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

.audio-slideshow .audio-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.audio-slideshow .audio-control-interface {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding:10px 0;
}

.audio-slideshow .play-pause-container {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #777;
    margin-right: 5px;
}
.audio-slideshow .time-container {
    position: relative;
    display: inline-block;
    height: 18px;
    font-weight: bold;
    color: #777;
    margin-right: 5px;
}

.audio-slideshow .play-pause-container a {
    outline: none;
    text-indent: -99999px;
    width: 16px;
    height: 16px;
    display: inline-block;
}
.audio-slideshow .play-pause-container a.audio-play {
    background: transparent url(/images/front/play.png) no-repeat center center;
}

.audio-slideshow .play-pause-container a.audio-pause {
    background: transparent url(/images/front/pause.png) no-repeat center center;
}

.audio-slideshow .mute-unmute-container {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #777;
    margin-right: 5px;
}

.audio-slideshow .mute-unmute-container a {
    outline: none;
    text-indent: -99999px;
    width: 16px;
    height: 16px;
    display: inline-block;
}
.audio-slideshow .mute-unmute-container a.audio-mute {
    background: transparent url(/images/front/mute.png) no-repeat center center;
}

.audio-slideshow .mute-unmute-container a.audio-unmute {
    background: transparent url(/images/front/unmute.png) no-repeat center center;
}

.audio-slideshow .reload-container {	
    font-weight: bold;
    color: #777;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    z-index: 123;
    font-size: 14px;
    display: inline-block;
}

.audio-slideshow .reload-container a {
    outline: none;
    position: relative;
    display: inline-block;
}

.audio-slideshow .timeline {
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    height: 8px;
    border: 1px solid #E63188;
    background: #f0f0f0;
    margin-right: 5px;
    margin-bottom: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.audio-slideshow .timeline .playhead {
    position: absolute;
    height: 100%;
    background: #E63188;
    width: 0;
}

.marker {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.4) inset;
    position: absolute;
    background: #B8BAC6;
    top: 5px;
}

.marker span {
    padding: 5px;
    position: absolute;
    bottom: 20px;
    opacity: 0;
    left: -50px;
    z-index: -1;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    background: #f5f6f6;
    background: -moz-linear-gradient(top, #f5f6f6 0%, #dbdce2 21%, #b8bac6 49%, #dddfe3 80%, #f5f6f6 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f6f6), color-stop(21%,#dbdce2), color-stop(49%,#b8bac6), color-stop(80%,#dddfe3), color-stop(100%,#f5f6f6));
    background: -webkit-linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%);
    background: -o-linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%);
    background: -ms-linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%);
    background: linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6f6', endColorstr='#f5f6f6',GradientType=0 );
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.marker span img {
    display: block;
}

.marker:hover span {
    opacity: 1;
    z-index: 100;
}


.video-content{
    pointer-events: none;
}
.video-content video{
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.video-content:after,
.video-content:before{
    content: " ";
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: inline-block;
}
.video-content .video-bg{
    display: inline-block;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.prev-next-controls{
    font-size: 14px;
    color: #272B2C;
}
.prev-next-controls a.disabled{
    cursor: default;
    color: #dddfe3;
    pointer-events: none;
}

.audio-slides > .one-slide{
    height: 100%;
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    position: absolute;
    z-index: 1;
}
.audio-slides > .one-slide .one-slide-content{
    font-size:26px; color: #ec0075; text-align: center; line-height: 2;
    max-height: 100%;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
}
.audio-slides > .one-slide.nohide{
    z-index: 2;
}

.audio-slides .play-btn{
    transition:all .3s ease 0s;
    cursor: pointer;
    z-index: 2;
    opacity: 0.15;position: absolute; left: 50%;top: 50%;transform: translate(-50%, -50%);font-size: 120px; background: #f9f9f9; border: 18px solid #ccc; color:#ccc; border-radius: 50%; line-height: 1;width: 250px; height: 250px; display: flex; justify-content: center; align-items: center;
}
.audio-slides:hover .play-btn{
    opacity: 0.25; 
}


#audio-slideshow-3 video{
    border-top: 2px solid white
}


@media (max-wdith:900px) {
    .audio-slideshow{
        left: 50%;
        transform: translateX(-50%);
    }
}
.portrait{display: none}
@media (orientation: landscape) and (min-width:960px){
    #slide-view {
        display:inline-block;
    }
    .portrait{display: none}

}

@media (orientation: portrait) and (max-width:959px) {
    #slide-view {
        display:none !important;
    }
    .portrait{display: block;padding:10px;}
    .portrait svg path{fill:#E63188 !important;}
    .portrait h2{font-weight: bold;color:#E63188}
}
@media (orientation: landscape) and (max-width:959px) {
    #slide-view{transform-origin: top left !important;min-width:960px;transform: scale(0.7) !important}
    header.slide-view-bd{position:relative !important;animation:none !important;}
}
@media (orientation: landscape) and (max-width:959px) and (min-width:680px){
    #slide-view {transform: scale(0.7) translateX(-50%) !important;left: 50%;position: relative;}
}



.nav-label-top{
    width: 100%; max-width: 940px;margin: 0 auto; text-align: right; font-size: 14px; color:rgb(130, 130, 130);
}
.nav-label-top a.itm{
    color:rgb(130, 130, 130);
    cursor: pointer;
    margin: 0 10px;
}
.nav-label-top a.itm:hover{
    color:#E63188;
}
.nav-label-top .dropdown-menu {
    top: 10px !important;
    box-shadow: 0px 0px 5px #ccc;
}
.nav-label-top .dropdown-menu .dropdown-item{
    font-size: 14px;
}
.nav-label-top .dropdown-menu .dropdown-item i{
    margin-right: 6px;
}
.dictionary-overlay{
    display: none;position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background-color: rgba(63, 62, 64, 0.4); overflow: hidden; width: calc(100% + 30px); height: 100%;z-index: 20000;
}
.dictionary-overlay .dictionary-overlay-close{
    position: absolute; right: 10px; top: 10px; overflow: visible; cursor: pointer; width: 50px; height: 50px;background: #000; text-align: center; border-radius: 50%;display: flex;  justify-content: center;  align-items: center;
}
.dictionary-overlay .dictionary-title{
    padding:  4px 10px;
    background: #E63188;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}
.dictionary-overlay .dictionary-content{
    padding: 15px;    
    position: relative;
}
.dictionary-nav .nav-item{
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
.dictionary-nav .nav-item .nav-link{
    background: #F282B8;
    color: #fff;
}
.dictionary-nav .nav-item .nav-link.active{
    background: #E63188;
    color: #fff;
}

.dictionary-content .tab-content > .active{
    border-radius: 25px;
    border: 2px solid #E63188; 
    padding: 15px;
    margin-top: 15px;
}




.icon-spcl{display:flex !important;padding-top:12px;height:180px;}
.icon-spcl .one-itms.active{
    background:#efefef    
}
.icon-spcl .one-itms.active:before{
    font: normal normal normal 14px/1 FontAwesome;content:'\f00c';color:#fff;line-height: 28px;
    font-size:20px;width:30px;height: 30px;border-radius:50%;background: #75c53e;position: absolute;top:-10px;right:-10px;
}
.icon-spcl .one-itms.active{transition-delay: 0.0s !important;}
.icon-spcl .one-itms{
    width:170px;
    position: relative;
    border:2px solid #E63188;padding:20px 10px;color:#777;margin:5px;display: flex;
    align-items: center;line-height:1.2;font-weight: 700;
    text-align:center;
    font-size: 16px;
    border-radius: 25px;
    cursor:pointer !important;
}

.one-itms-cnt > div{
    border:1px solid #ccc;padding:15px;border-radius:25px;display:none;margin-top:25px;color: #666;line-height: 1.3;  text-align: center;background:#efefef;
}
.top-info-icon{text-align: center;position: relative;}
.top-info-icon .icon img{max-width:100%;}
.top-info-icon .icon:before{width:20px;height: 20px;top:5px;left:50%;margin-left:-10px;position: absolute;background:#fff;content:'';border-radius: 50%;}
.top-info-icon .itms {
    position: absolute;
    width: 2px;
    height: 100px;
    bottom: 100%;
    content: '';
    background: #E63188;
    left: 50%;
    margin-bottom: -11px;
    margin-left: -1px;
}
.top-info-icon .icon {
    margin: 0 auto;
    width: 150px;
    height: 150px;background: #E63188;border:2px solid #E63188;
    background: linear-gradient(41deg,rgba(230, 49, 136, 1) 0%, rgba(245, 137, 189, 1) 100%);
    border-radius: 50%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slctn[style*="display: block;"] .top-info-icon{
    transform: translateY(0);opacity: 1;
}
.spc-fls{
    height: 515px;
    background: #fff;
    z-index: 1;
    position: relative;
}
.icon-spcl2{display:flex;overflow: hidden;padding:3px;padding-top: 50px;}
.icon-spcl2 > div.one-itms{
    position: relative;
    border:2px solid #E63188;padding:20px 10px;color:#777;margin:5px;display: flex;
    align-items: center;line-height:1.2;font-weight: 700;
    width: 33%;text-align:center;
    font-size: 22px;
    border-radius: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    ransition-delay:3.0s;
    cursor:pointer !important;
    flex-direction: column;
}
.icon-spcl2 .one-itms img{
    width:200px;height: 200px;max-width:100%;object-fit: cover;object-position: center;margin-bottom: 30px;margin-top:20px;
}
.icon-spcl2 .one-itms.active{
    background:#efefef    
}
.icon-spcl2 .one-itms.active:before{
    font: normal normal normal 14px/1 FontAwesome;content:'\f00c';color:#fff;line-height: 28px;
    font-size:20px;width:30px;height: 30px;border-radius:50%;background: #75c53e;position: absolute;top:-10px;right:-10px;
}
.icon-spcl2 .one-itms.active{transition-delay: 0.0s !important;}
.one-itms-cnt.ins-2 > div{
    position:absolute;top:0;height: 434px;padding-top:80px;font-size:20px;
}
.one-itms-cnt.ins-2 > div .overlay-close{
    position: absolute;
    right: 10px;
    top: 10px;
    overflow: visible;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #000;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spc-fls2{
    height:auto;background:transparent;max-width:65%;
}
.spc-fls2 .icon-spcl2 .one-itms img{
    width:150px;height: 150px;margin:10px auto;
}
.spc-fls2 .icon-spcl2 > div.one-itms{
    font-size:20px;
}
.slctn.text-center small{line-height:1.2;display:block;padding-top: 5px;}

.spc-fls2 .one-itms-cnt.ins-2 > div {
    position: absolute;
    top: -122px;
    height: 538px;
    padding-top: 80px;
    font-size: 18px;
    width: 154%;
    overflow-y: auto;
}
.ins-2 .spc{display:flex !important}
.ins-2 .spc *{display:inline-block !important;}
.ins-2 .spc .img{width:30%;margin-right: 30px;}
.ins-2 .spc .img img{max-width:100%;border:2px solid #E63188;width:300px;}
.ins-2 .spc .txt{
    width:65%;text-align: left;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.ins-3 .spc .img{width:30%;margin-right: 30px;}
.ins-3 .spc .img img{max-width:100%;border:2px solid #E63188;width:300px;}
.ins-3 .spc .txt{
    width:65%;text-align: left;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.sol2{
    margin-top:20px;
    background: #E63188;
    background: linear-gradient(41deg,rgba(230, 49, 136, 1) 0%, rgba(245, 137, 189, 1) 100%);
    color:#fff;
    padding:25px;border-radius:25px; 
}
.ins-2 .spc .txt .sol{
    margin-top:20px;
    background: #E63188;
    background: linear-gradient(41deg,rgba(230, 49, 136, 1) 0%, rgba(245, 137, 189, 1) 100%);
    color:#fff;
    padding:25px;border-radius:25px;
}
.bnx{
    margin-top:10px;width:100%;
    background: #E63188;
    background: linear-gradient(41deg,rgba(230, 49, 136, 1) 0%, rgba(245, 137, 189, 1) 100%);
    padding:10px;text-align: center;color:#fff;
}

.olew{
    background: #E63188;
    background: linear-gradient(41deg,rgba(230, 49, 136, 1) 0%, rgba(245, 137, 189, 1) 100%);
    color:#fff;
    padding:15px 20px;border-radius:25px;
}
.zals-row{
    display: flex;gap:20px;margin-top:20px;
    justify-content: space-between;
}
.zals-row .one-act{
    border:2px solid #E63188;
    padding:20px;
    margin:0px;
    width:47%;
}

.zals-row .one-act .onr-w img{
    width:40px;height:40px;object-fit: contain;object-position: center;margin-right: 20px;
}
.zals-row .one-act .onr-w {display: flex;font-size:18px;padding:5px 0 15px 0;}
.zals-row .one-act .t{
    text-align: center;
    font-size: 21px;
    color: #E63188;
    font-weight: 700;
    border-bottom: 2px solid #E63188;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.zals-row .one-act .dns{
    background: #E63188;
    background: linear-gradient(41deg,rgba(230, 49, 136, 1) 0%, rgba(245, 137, 189, 1) 100%);
    color:#fff;
    padding:15px 20px;border-radius:25px;text-align: center;line-height: 1.4;
}
.spc-fls3 {padding-top:30px;}
.spc-fls3 .icon-spcl2 > div.one-itms{
    padding:10px;border:none;
}
.spc-fls3 .icon-spcl2 .one-itms img{width: 255px;height: 140px;border: 2px solid #E63188;margin-bottom: 10px;}
.spc-fls3 .icon-spcl2 .one-itms span {
    border: 2px solid #E63188;
    color: #E63188;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 15px;
    text-align: center;
    width: 255px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spc-fls3 .icon-spcl2 .one-itms span:hover{
    background:#E63188;color:#fff;
}
.spc-fls3 .icon-spcl2.icon-spc123 > div.one-itms
{
    margin:0;
    padding: 0;
    border-radius: 0;
}
.spc-fls3 .icon-spcl2.icon-spc123{gap:30px;padding: 50px 10px 0 10px;}
.spc-fls3 .icon-spcl2.icon-spc123 > div.one-itms span{
    width: 100%;font-size:20px;padding:20px 10px;border-radius:5px;height: 140px;
}
.spc-fls4 .icon-spcl2{padding-left:10px;padding-right: 10px;}

.icon-spc8{height:140px;justify-content: space-around;}
.icon-spc8.icon-spcl .one-itms{width:28%;justify-content: center;}

.one-cl{font-size:15px;padding:2px;width: 25%;}
.one-cl .tlx b{display: block;line-height: 1.2;padding-top: 2px;color:rgb(230, 49, 136);}
.one-cl .tlx{border:1px solid #E63188;padding:5px;line-height: 1.2;font-size:17px;}
.one-cl .tla{font-size:15px;margin-top:3px;border:1px dashed #E63188;padding:5px;line-height: 1.2;height: 400px;}
.one-cl .tla b{display: block;padding:5px 0;font-size:110%;}
.one-cl .tla b:last-of-type{margin-top:10px;}
.ileostomia .one-cl .tlx{padding:1px;font-size:16px;}
.ileostomia .one-cl .tla{font-size:14px;height:433px;}
.table .one-row{
    display:flex;flex-direction: row;
    justify-content: space-around;
}
.table .one-row .one-col {
    width: 33%;
    border: 1px solid #ccc;
    padding: 4px 5px;
    margin: 3px;
    text-align: center;
    font-weight: bold;
    color: #666;
}

.onx-ls{
    width:20%;padding:10px;
}
.onx-ls:hover{filter: grayscale(1);cursor:pointer !important;}
.onx-ls img{width:130px;max-width:100%;}
.ins-5.one-itms-cnt.ins-2 > div{z-index:6;height:260px;background:#fff;top: 70px;padding-top:50px;}
.ins-5 > div .lgl{width: 40%;}
.ins-5 > div .txt{
    width:60%;padding-right:30px;
    text-align:left;
}
.ins-5 > div .txt .spx-bsm{display: block;font-size:22px;margin: 20px 0 0;}
.ins-5 > div {
    width:100%;
}
.ins-5 > div  > div{
    min-height:160px;align-items:center;
}