/*

* Override Pages default styles or create your own styles here

*/
html {
    scroll-behavior: smooth;
}

#detailedTable td {
    padding: 10px;
    padding-left: 15px;
}

.table-sm td {
    padding: 10px !important;
}

.jumbotron h1.large-demo-text {
    font-size: 150px;
}

.icon-text-search {
    font-size: 42px;
    width: 150%;
}

.color-bb-primary {
    color: #066067 !important;
}

.color-bb-secondary {
    color: #2FDFB3 !important;
}

.color-bb-tertiary {
    color: #00B2B2 !important;
}

.bg-bb-primary {
    background-color: #066067 !important;
}

.bg-bb-primary-dark {
    background-color: #1e2139 !important;
}

.bg-bb-secondary {
    background-color: #2FDFB3 !important;
}

.bg-bb-tertiary {
    background-color: #00B2B2 !important;
}

.tbh-bb-primary {
    background-color: #066067 !important;
    border: 1px solid #066067 !important;
}

.tbh-bb-secondary {
    background-color: #2FDFB3 !important;
    border: 1px solid #2FDFB3 !important;
}

.tbh-bb-tertiary {
    background-color: #00B2B2 !important;
    border: 1px solid #00B2B2 !important;
}

.outline-bb-primary {
    border: 1px solid #066067 !important;
}

.outline-bb-secondary {
    border: 1px solid #2FDFB3 !important;
}

.outline-bb-tertiary {
    border: 1px solid #00B2B2 !important;
}

.StripeElement {
    box-sizing: border-box;

    /*height: 40px;*/

    padding: 10px 12px;

    border: 1px solid #e2e7f1;
    border-radius: 4px;
    background-color: white;
    color: #000;

    /*box-shadow: 0 1px 3px 0 #e6ebf1;*/
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.InputElement {
    color: #000;
}

.dot-new {
    background-color: rgba(178, 190, 195, 0.0);
    border: 1px solid rgba(178, 190, 195, 1.0);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.dot-warning {
    background-color: rgba(253, 203, 110, 0.7);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.dot-danger {
    background-color: rgba(255, 82, 82, 1);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.dot-success {
    background-color: rgba(0, 184, 148, 0.7);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.pulse-danger {
    animation: pulsed 1s infinite;
    background-color: rgba(255, 82, 82, 1.0);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

@keyframes pulsed {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(255, 82, 82, 0.0);
    }

    100% {
        transform: scale(0.9);
    }
}

.pulse-warning {
    animation: pulsew 1s infinite;
    background-color: rgba(253, 203, 110, 1.0);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

@keyframes pulsew {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(253, 203, 110, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(253, 203, 110, 0);
    }

    100% {
        transform: scale(0.9);
    }
}

.pulse-success {
    animation: pulses 1s infinite;
    background-color: rgba(0, 184, 148, 1.0);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

@keyframes pulses {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(0, 184, 148, 0);
    }

    100% {
        transform: scale(0.9);
    }
}

.breaking-news {
    background-color: #33A3F1;
    color: #ffffff;
    border-radius: 10px 50px 50px 10px;
    padding: 5px;
}

.media-content {
    padding: 5px;
}

.time {
    color: #33A3F1;
}

.news {
    color: #666666;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 1s
}

.fade-enter, .fade-leave-to {
    opacity: 0
}


/* Order Tracking Styles */

.track {
    position: relative;
    /*background-color: #ddd;*/
    height: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    margin-top: 50px;
}

.track .step {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 25%;
    margin-top: -18px;
    text-align: center;
    position: relative
}

.track .step.active:before {
    background: #00B2B2;
}

.track .step::before {
    height: 7px;
    position: absolute;
    background-color: #ddd;
    content: "";
    width: 100%;
    left: 0;
    top: 18px;
    /*z-index: -1;*/
    left: -50%;
}

.track .step:first-child:before {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    left: 50%;
}


.track .step.active .icon {
    background: #00B2B2;
    color: #fff
}

.track .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    border-radius: 100%;
    background: #ddd;
    z-index: 2;
}

.track .step.active .text {
    font-weight: 400;
    color: #000
}

.track .text {
    display: block;
    margin-top: 7px
}


/* Pages Notifications plugin
--------------------------------------------------
*/
/* Pages Notification customizations */
body:not(.horizontal-app-menu) .pgn-wrapper[data-position="top"] {
    top: 60px;
    left: 70px;
}

body:not(.horizontal-app-menu) .pgn-wrapper[data-position="bottom"] {
    left: 70px;
}

body:not(.horizontal-app-menu) .pgn-wrapper[data-position$="-left"] {
    left: 90px;
    right: auto;
}

body:not(.horizontal-app-menu) .pgn-wrapper[data-position^="top-"] {
    top: 80px;
    bottom: auto;
}

body.menu-pin .pgn-wrapper[data-position$="-left"],
body.menu-pin .pgn-wrapper[data-position="top"],
body.menu-pin .pgn-wrapper[data-position="bottom"] {
    left: 250px;
}

body.horizontal-app-menu .pgn-wrapper {
    z-index: 799;
}

.pgn-wrapper {
    position: fixed;
    z-index: 999;
}

.pgn-wrapper[data-position$="-left"] {
    left: 30px;
}

.pgn-wrapper[data-position$="-right"] {
    right: 20px;
}

.pgn-wrapper[data-position^="top-"] {
    top: 20px;
}

.pgn-wrapper[data-position^="bottom-"] {
    bottom: 20px;
}

.pgn-wrapper[data-position="top"] {
    top: 0;
    left: 0;
    right: 0;
}

.pgn-wrapper[data-position="bottom"] {
    bottom: 0;
    left: 0;
    right: 0;
}

.pgn {
    position: relative;
    margin: 10px;
}

.pgn.pgn-flip {
    margin-top: 0px;
}

.pgn .alert {
    margin: 0;
    margin-bottom: 4px;
}

/* Simple
------------------------------------
*/
.pgn-simple .alert {
    padding-top: 13px;
    padding-bottom: 13px;
    max-width: 500px;
    animation: fadeIn 0.3s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    -webkit-animation: fadeIn 0.3s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    max-height: 250px;
    overflow: hidden;
}

/* Bar
------------------------------------
*/
.pgn-bar {
    overflow: hidden;
    margin: 0;
}

.pgn-bar .alert {
    border-radius: 0;
    padding-top: 13px;
    padding-bottom: 13px;
    max-height: 91px;
}

.pgn-wrapper[data-position="top"] .pgn-bar .alert {
    animation: slideInFromTop 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    -webkit-animation: slideInFromTop 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    transform-origin: top left;
    -webkit-transform-origin: top left;
}

.pgn-wrapper[data-position="bottom"] .pgn-bar .alert {
    animation: slideInFromBottom 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    -webkit-animation: slideInFromBottom 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
}

.pgn-bar .alert span {
    opacity: 0;
    animation: fadeIn 0.3s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
    -webkit-animation: fadeIn 0.3s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes slideInFromTop {
    0% {
        -webkit-transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes slideInFromBottom {
    0% {
        -webkit-transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

/* Circle
------------------------------------
*/
.pgn-circle .alert {
    margin-bottom: 10px;
    border-radius: 300px;
    animation: fadeInCircle 0.3s ease forwards, resizeCircle 0.3s 0.4s cubic-bezier(0.25, 0.25, 0.4, 1.6) forwards;
    -webkit-animation: fadeInCircle 0.3s ease forwards, resizeCircle 0.3s 0.4s cubic-bezier(0.25, 0.25, 0.4, 1.6) forwards;
    height: 60px;
    overflow: hidden;
    padding: 6px 55px 6px 6px;
    -webkit-transform: translateZ(0);
    position: relative;
}

.pgn-wrapper[data-position$="-right"] .pgn-circle .alert {
    float: right;
}

.pgn-wrapper[data-position$="-left"] .pgn-circle .alert {
    float: left;
}

.pgn-wrapper[data-position^="bottom-"] .pgn-circle .alert {
    margin-bottom: 20px;
}

.pgn-circle .alert > div > div.pgn-thumbnail > div {
    border-radius: 50%;
    overflow: hidden;
    width: 48px;
    height: 48px;
}

.pgn-circle .alert > div > div.pgn-thumbnail > div > img {
    width: 100%;
    height: 100%;
}

.pgn-circle .alert > div > div.pgn-message > div {
    opacity: 0;
    height: 47px;
    padding-left: 9px;
    animation: fadeIn 0.3s 0.5s ease forwards;
    -webkit-animation: fadeIn 0.3s 0.5s ease forwards;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
    word-wrap: break-word;
}

.pgn-circle .alert > div > div.pgn-message > div p:only-child {
    padding: 12px 0;
}

.pgn-circle .alert .close {
    margin-top: -12px;
    position: absolute;
    right: 18px;
    top: 50%;
    opacity: 0;
    animation: fadeIn 0.3s 0.5s ease forwards;
    -webkit-animation: fadeIn 0.3s 0.5s ease forwards;
}

.pgn-circle .alert p {
    margin-bottom: 0;
}

.pgn-circle .alert > div {
    display: table;
    height: 100%;
}

.pgn-circle .alert > div > div {
    display: table-cell;
    vertical-align: middle;
}

@keyframes fadeInCircle {
    0% {
        opacity: 0;
        width: 60px;
    }
    100% {
        opacity: 1;
        width: 60px;
    }
}

@-webkit-keyframes fadeInCircle {
    0% {
        opacity: 0;
        width: 60px;
    }
    100% {
        opacity: 1;
        width: 60px;
    }
}

@keyframes resizeCircle {
    0% {
        width: 60px;
    }
    100% {
        width: 300px;
    }
}

@-webkit-keyframes resizeCircle {
    0% {
        width: 60px;
    }
    100% {
        width: 300px;
    }
}

/* Flip
------------------------------------
*/
.pgn-wrapper[data-position^="bottom-"] .pgn-flip .alert {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.pgn-flip .alert {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    border-radius: 0;
    padding: 25px 35px;
    max-width: 500px;
    max-height: 250px;
    overflow: hidden;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
        -webkit-transition-timing-function: ease-in;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
        -webkit-transition-timing-function: ease-out;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
        -webkit-transition-timing-function: ease-in;
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
        -webkit-transition-timing-function: ease-out;
    }
    100% {
        -webkit-transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Pages Notification customizations */
body > .pgn-wrapper[data-position="top"] {
    top: 60px;
    left: 70px;
}

body > .pgn-wrapper[data-position="bottom"] {
    left: 70px;
}

body > .pgn-wrapper[data-position$="-left"] {
    left: 90px;
    right: auto;
}

body > .pgn-wrapper[data-position^="top-"] {
    top: 80px;
    bottom: auto;
}

.pgn-circle .alert .close {
    margin-top: -4px;
}

body > .pgn-wrapper {
    z-index: 900;
}

@media (max-width: 979px) {
    body .pgn-wrapper[data-position="top"] {
        left: 0 !important;
    }

    body .pgn-wrapper[data-position="bottom"] {
        left: 0 !important;
    }
}

@media (max-width: 767px) {
    body .pgn-wrapper[data-position$="-left"],
    body .pgn-wrapper[data-position$="-right"] {
        left: 10px !important;
        right: 10px !important;
    }

    body .pgn-wrapper[data-position$="-right"] .alert,
    body .pgn-wrapper[data-position$="-left"] .alert {
        max-width: 100%;
        width: 100%;
    }
}

/* Notifications demo
--------------------------------------------------
*/
.notification-positions {
    border-radius: 4px;
    border: 3px dashed #e0e0e0;
    height: 370px;
    position: relative;
}

.notification-positions > div > .position:not(:only-child) {
    max-width: 50%;
}

.notification-positions .position {
    padding: 15px;
}

.notification-positions .position img {
    border: 3px solid transparent;
}

.notification-positions .position:hover {
    cursor: pointer;
}

.notification-positions .position.active img {
    border-color: #0090d9;
}

.notification-positions .position.pull-top, .notification-positions .position.pull-bottom {
    left: 0;
    right: 0;
}

.notification-positions .position img {
    width: 100%;
}

.notification-tabs {
    flex-wrap: wrap;
}
