/* countdown timer start */
.color-bg-global-primary-1 #counter {
    color: #fff;
}
#counter {
    visibility: hidden;
    display: block;
}

#counter.start {
    visibility: visible;
}

#counter .icon {
    margin-right: 5px;
    position: relative;
    top: 2px;
}

#counter .counterValue {
    display: inline-block;
}

#counter .digits {
    display: inline-block;
    text-align: center;
    font-weight: bold;
}

#counter .colon {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-top: -3px;
    font-weight: bold;
}

#counter .alphabets {
    text-align: center;
    display: inline-block;
    font-weight: bold;
}
/* countdown timer end */

/* play/pause button start */
div[id^='playPauseButton'] .cmp-image .container-img:has(.playPauseIcons) {
    overflow: visible;
}

#playPauseButtonHeroBanner .playPauseIcons {
    position: absolute !important;
    right: 0px;
    bottom: 8px;
}
    
@media only screen and (max-width: 767px) {
    #playPauseButtonHeroBanner .playPauseIcons {
        right: 25px;
    }
}

/* NOTE!: adjust right and bottom properties in a page (internal CSS) if needed */
div[id^='playPauseButton'] .playPauseIcons {
    position: absolute !important;
    right: -35px;
    bottom: 0;
}

.playPauseIcons > .icon > img {
    width: 25px;
    height: 25px;
}

.playPauseIcons > .icon  {
    display: inline;
}

.playPauseIcons .icon.hidden {
    display: none;
}
/* play/pause button end */

/* sticky nav start */
.vCenterBlock {
    font-size: 0;
    width: 100%;
    height: inherit;
    min-height: inherit;
    max-height: inherit;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.vCenterBlock .emptyDiv {
    height: inherit;
    min-height: inherit;
    max-height: inherit;
    visibility: hidden;
    flex-direction: row-reverse;
}

.verticalCenter {
    display: inline-block;
    vertical-align: middle;
    font-size: medium;
}

#stickyNav {
    width: 100%;
    display: block;
    height: auto;
    min-height: 75px;
    max-height: 120px;
    position: relative;
}

#stickyNav .stickyNavInner {
    width: inherit;
    height: fit-content;
    min-height: inherit;
    max-height: inherit;
    background: #fff;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#stickyNav .stickyNavInner.sticky {
    width: 100%;
    position: fixed;
    top: auto;
    bottom: 0px;
    left: 0px;
    z-index: 99;
}

#stickyNav .stickyNavInner .vCenterBlock {
    margin: 0 auto;
    max-width: 75rem;
    padding: 10px 15px;
}

#stickyNav .stickyNavInner .leftSection {
    height: auto;
    -webkit-flex: 1;
    flex: 1;
    width: 70%;
    min-width: 40%;
    margin-right: 20px;
    text-align: right;
}

#stickyNav .stickyNavInner .rightSection {
    height: auto;
    -webkit-flex: initial;
    flex: initial;
    width: fit-content;
    text-align: right;
}

#stickyNav .stickyNavInner a.button {
    white-space: nowrap;
}

#stickyNav .stickyNavInner .stickyText {
    font-size: 14px;
    text-align: left;
}

#stickyNav .stickyNavInner .noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#stickyNav .stickyNavInner .noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#stickyNav .stickyNavInner p {
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    #stickyNav a.button {
             width: auto;
             white-space: normal;
    }
}

@media only screen and (max-width: 600px) {      
    #stickyNav .stickyNavInner .leftSection {
             text-align: left;
    }
}
/* sticky nav end */
