/* Common, default styles for the notification box */
/*Alert*/
.s-alert-box,
.s-alert-box * {
    box-sizing: border-box;
}

.s-alert-box {
    position: fixed;
    background: rgba(42, 45, 50, 0.85);
    padding: 28px;
    line-height: 1.4;
    z-index: 1000;
    pointer-events: none;
    color: rgba(250, 251, 255, 0.95);
    font-size: 100%;
    font-weight: "bold";
    -webkit-transition: top 0.4s, bottom 0.4s;
    transition: top 0.4s, bottom 0.4s;
}

.s-alert-box.s-alert-show {
    pointer-events: auto;
}

.s-alert-box a {
    color: inherit;
    opacity: 0.7;
    font-weight: 700;
}

.s-alert-box a:hover,
.s-alert-box a:focus {
    opacity: 1;
}

.s-alert-box p {
    margin: 0;
}

.s-alert-box.s-alert-show,
.s-alert-box.s-alert-visible {
    pointer-events: auto;
}

.s-alert-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 22px;
    top: 22px;
    overflow: hidden;
    text-indent: 100%;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.s-alert-close:hover,
.s-alert-close:focus {
    outline: none;
}

.s-alert-close::before,
.s-alert-close::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 60%;
    top: 50%;
    left: 50%;
    background: #fff;
}

.s-alert-close:hover::before,
.s-alert-close:hover::after {
    background: #fff;
}

.s-alert-close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.s-alert-close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* positions */

.s-alert-bottom-left {
    top: auto;
    right: auto;
    bottom: 30px;
    left: 30px;
}
.s-alert-top-left {
    top: 30px;
    right: auto;
    bottom: auto;
    left: 30px;
}
.s-alert-top-right {
    top: 30px;
    right: 30px;
    bottom: auto;
    left: auto;
}
.s-alert-bottom-right {
    /*default*/
    top: auto;
    right: 30px;
    bottom: 30px;
    left: auto;
}
.s-alert-bottom {
    width: 100%;
    max-width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
}
.s-alert-top {
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
}

/* conditions */

.s-alert-info {
    background: #00a2d3;
    color: #fff;
}
.s-alert-success {
    background: #27ae60;
    color: #fff;
}
.s-alert-warning {
    background: #f1c40f;
    color: #fff;
}
.s-alert-error {
    background: #e74c3c;
    color: #fff;
}

[class^="s-alert-effect-"].s-alert-hide,
[class*=" s-alert-effect-"].s-alert-hide {
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

/* height measurement helper */
.s-alert-box-height {
    visibility: hidden;
    position: fixed;
}

/* stackslide (top, bottom - full width) */

.s-alert-effect-stackslide .s-alert-close {
    background: transparent;
}

.s-alert-effect-stackslide .s-alert-close::before,
.s-alert-effect-stackslide .s-alert-close::after {
    background: #fff;
}

.s-alert-effect-stackslide p {
    padding: 0 1.5em;
    display: inline-block;
}

.s-alert-effect-stackslide .s-alert-close::before,
.s-alert-effect-stackslide .s-alert-close::after {
    width: 2px;
    background: #fff;
}

.s-alert-effect-stackslide .s-alert-close:hover::before,
.s-alert-effect-stackslide .s-alert-close:hover::after {
    background: #fff;
}

.s-alert-top-left.s-alert-effect-stackslide.s-alert-show,
.s-alert-top-right.s-alert-effect-stackslide.s-alert-show,
.s-alert-top-left.s-alert-effect-stackslide.s-alert-hide,
.s-alert-top-right.s-alert-effect-stackslide.s-alert-hide,
.s-alert-top.s-alert-effect-stackslide.s-alert-show,
.s-alert-top.s-alert-effect-stackslide.s-alert-hide {
    -webkit-animation-name: animSlideTop;
    animation-name: animSlideTop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

@-webkit-keyframes animSlideTop {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes animSlideTop {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.s-alert-bottom-left.s-alert-effect-stackslide.s-alert-show,
.s-alert-bottom-right.s-alert-effect-stackslide.s-alert-show,
.s-alert-bottom-left.s-alert-effect-stackslide.s-alert-hide,
.s-alert-bottom-right.s-alert-effect-stackslide.s-alert-hide,
.s-alert-bottom.s-alert-effect-stackslide.s-alert-show,
.s-alert-bottom.s-alert-effect-stackslide.s-alert-hide {
    -webkit-animation-name: animSlideBottom;
    animation-name: animSlideBottom;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

@-webkit-keyframes animSlideBottom {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes animSlideBottom {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/*FeatureToggle*/
.customeTheme {
    color: #1a202c !important;
    max-width: 320px;
    min-height: 60px;
    font-size: 16px !important;
    box-shadow: 0px 10px 15px rgb(0 0 0 / 8%);
    border-radius: 20px !important;
    padding: 28px 18px 5px 22px !important;
    font-weight: 400;
    z-index: 1001 !important;
}

.customeThemeinfo {
    color: #1a202c !important;
    max-width: 320px;
    min-height: 60px;
    font-size: 16px !important;
    box-shadow: 0px 10px 15px rgb(0 0 0 / 8%);
    border-radius: 20px !important;
    padding: 8px 12px !important;
    font-weight: 400;
}


/*Tooltip*/
.tooltip-link {
    color: blue !important;
    cursor: pointer;
    font-size: 0.8rem;
}

.tooltip-container {
    position: relative;
    justify-content: center;
    border-color: inherit;
}

.tooltip-box {
    position: absolute;
    width: 100%;
    padding: 0.5rem;
    flex-direction: column;
    border-color: inherit;
}

.tooltip-image {
    width: 100%;
    height: auto;
    margin: auto;
}

.tooltip-message {
    justify-content: center;
    padding: 0.5rem;
}

.tooltip-box-top::before,
.tooltip-box-bottom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    z-index: 99;
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    left: calc(50% - 10px);
}


.tooltip-box-top::before {
    border-top: 10px solid blue;
    border-top-color: inherit;
    top: 100%;
}

.tooltip-box-bottom::after {
    border-bottom: 10px solid blue;
    border-bottom-color: inherit;
    bottom: 100%;
}

/*ErrorCard*/
#error-card {
    max-width: 568px;
    width: 100%;
    margin: auto;
}

#error-card-content {
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
    border-radius: 10px;
    border: 0 !important;
}

#error-card-message {
    padding: 2rem 2rem 0;
    word-break: break-word;
    font-weight: 500;
    color: red;
}
/*PaymentBox*/
#payment-box.loading {
    height: 320px;
}

#dropin-container {
    padding: 0 !important;
    width: 100% !important;
}
#dropin,
#status {
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
    border-radius: 10px;
    border: 0 !important;
}

#dropin .adyen-checkout__button {
    background: #0000FF;
}

#dropin .adyen-checkout__button__content {
    font-weight: bold;
}

#dropin .adyen-checkout__payment-method--selected {
    background: white;
}

#dropin .adyen-checkout__label__text,
#dropin .adyen-checkout__payment-method__name--selected {
    font-weight: bold;
}
/*PrepaidUsage*/
.CircularProgressbar {
    /*
       * This fixes an issue where the CircularProgressbar svg has
       * 0 width inside a "display: flex" container, and thus not visible.
       */
    /* width: 50%; */
    height: 203.05977931000976px;
    width: 203.05977931000976px;

    /*
       * This fixes a centering issue with CircularProgressbarWithChildren:
       * https://github.com/kevinsqi/react-circular-progressbar/issues/94
       */
    vertical-align: middle;
}

.CircularProgressbar .CircularProgressbar-path {
    stroke: #0015c4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease 0s;
}

.CircularProgressbar .CircularProgressbar-trail {
    stroke: #CCD0F3;
    /* Used when trail is not full diameter, i.e. when props.circleRatio is set */
    stroke-linecap: round;
}

.CircularProgressbar .CircularProgressbar-text {
    fill: #000;
    font-size: 20px;
    text-anchor: middle;
    font-family: "SF Pro Display";
    text-align: center;

}

.CircularProgressbar .CircularProgressbar-background {
    fill: #d6d6d6;
}

/*
   * Sample background styles. Use these with e.g.:
   *
   *   <CircularProgressbar
   *     className="CircularProgressbar-inverted"
   *     background
   *     percentage={50}
   *   />
   */
.CircularProgressbar.CircularProgressbar-inverted
.CircularProgressbar-background {
    fill: #3e98c7;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text {
    fill: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path {
    stroke: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trail {
    stroke: transparent;
}
/*PaymentAdyenDropin*/
#payment {
    margin: 0 auto;
    width: 100%;
    max-width: 568px;
    z-index: 0;
    min-height: 282px;
}

#payment .chckt-pm-list {
    min-width: 80% !important;
}

#payment .chckt-pm-list {
    min-width: 80% !important;
}

#payment .adyen-checkout__button--pay {
    background-color: #0000FF;
}

#payment .adyen-checkout__dropin ul {
    margin-left: 0;
}

#payment .adyen-checkout__status {
    max-height: 282px;
    max-width: 568px;
    width: 100%;
    background-color: #F7F7F7;
    border-radius: 12px;
}
/*PrepaidUsage*/
@media all and (max-width: 320px) {
    .selectionButton {
        min-width: 50px !important;
        width: 50px !important;
    }

}
/*HighlightText*/
.highlight-text {
    border-radius: 4px;
    padding: 1px 3px 1px 3px;
    font-size: 0.9em;
}

/*RenderSlider*/

.rc-slider {
    position: relative;
    height: 14px;
    padding: 5px 0;
    width: 100%;
    border-radius: 6px;
    touch-action: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
    position: absolute;
    width: 100%;
    background-color: #e9e9e9;
    height: 8px;
    border-radius: 6px;
}
.rc-slider-track {
    position: absolute;
    left: 0;
    height: 4px;
    border-radius: 6px;
    background-color: #abe2fb;
}
.rc-slider-handle {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    cursor: -webkit-grab;
    margin-top: -9px;
    cursor: grab;
    border-radius: 50%;
    /* border: solid 2px #96dbfa; */
    /* background-color: #fff; */
    touch-action: pan-x;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
    border-color: #57c5f7;
    box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle:focus {
    outline: none;
}
.rc-slider-handle-click-focused:focus {
    border-color: #96dbfa;
    box-shadow: unset;
}
.rc-slider-handle:hover {
    border-color: #57c5f7;
}
.rc-slider-handle:active {
    border-color: #57c5f7;
    box-shadow: 0 0 5px #57c5f7;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.rc-slider-mark {
    position: absolute;
    top: 26px;
    left: 0;
    width: 100%;
    font-size: 16px;
}
.rc-slider-mark-text {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: #999;
}
.rc-slider-mark-text-active {
    color: #666;
}
.rc-slider-step {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
}
.rc-slider-dot {
    position: absolute;
    bottom: -2px;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    border: 2px solid #e9e9e9;
    background-color: #fff;
    cursor: pointer;
    border-radius: 50%;
    vertical-align: middle;
}
.rc-slider-dot-active {
    border-color: #96dbfa;
}
.rc-slider-dot-reverse {
    margin-right: -4px;
}
.rc-slider-disabled {
    background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
    background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
    border-color: #ccc;
    box-shadow: none;
    background-color: #fff;
    cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
    cursor: not-allowed !important;
}
.rc-slider-vertical {
    width: 14px;
    height: 100%;
    padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
    height: 100%;
    width: 4px;
}
.rc-slider-vertical .rc-slider-track {
    left: 5px;
    bottom: 0;
    width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
    margin-left: -5px;
    touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
    top: 0;
    left: 18px;
    height: 100%;
}
.rc-slider-vertical .rc-slider-step {
    height: 100%;
    width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
    left: 2px;
    margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
    margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
    margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: block !important;
    animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: block !important;
    animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
    animation-name: rcSliderTooltipZoomDownIn;
    animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
    animation-name: rcSliderTooltipZoomDownOut;
    animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
    transform: scale(0, 0);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
    0% {
        opacity: 0;
        transform-origin: 50% 100%;
        transform: scale(0, 0);
    }
    100% {
        transform-origin: 50% 100%;
        transform: scale(1, 1);
    }
}
@keyframes rcSliderTooltipZoomDownOut {
    0% {
        transform-origin: 50% 100%;
        transform: scale(1, 1);
    }
    100% {
        opacity: 0;
        transform-origin: 50% 100%;
        transform: scale(0, 0);
    }
}
.rc-slider-tooltip {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: visible;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
    display: none;
}
.rc-slider-tooltip-placement-top {
    padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
    padding: 6px 2px;
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #6c6c6c;
    border-radius: 6px;
    box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
    bottom: 4px;
    left: 50%;
    margin-left: -4px;
    border-width: 4px 4px 0;
    border-top-color: #6c6c6c;
}

/*OrderDetail*/
.label {
    font-weight: bold;
    word-break: break-word;
    line-height: 1.5;
}
.value {
    word-break: break-word;
    line-height: 1.5;
}
.value::before {
    content: ":";
    padding-right: 0.5rem;
    line-height: 1.5;
}

@media all and (min-width: 720px) {
    .label {
        min-width: 10rem !important;
        width: 10rem !important;
    }
}

@media all and (max-width: 719px) and (min-width: 400px) {
    .label {
        min-width: 10rem !important;
        width: 10rem !important;
    }
}

@media all and (max-width: 399px) {
    .label {
        min-width: 7.5rem !important;
        width: 7.5rem !important;
    }

}

/*MockPaymentBox*/
#mock-payment-box {
    height: 320px;
    max-width: 568px;
    width: 100%;
    margin: auto;
}

#payment-box-content {
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
    border-radius: 10px;
    border: 0 !important;
}

.success {
    color: green !important;
}

.failure {
    color: red !important;
}

.success-button {
    background-color: green !important;
    border-color: green !important;
}

.failure-button {
    background-color: red !important;
    border-color: red !important;
}



