/* Sets the container's height and width */
.root {
    height: 150px;
    width: 150px;
    position: relative;
}

@media (max-width:765px){.c-position{position: relative !important;}}

/* Removes SVG styling that would hide the time label */
.circle {
    fill: none;
    stroke: none;
}
circle{
    stroke-width: 0 !important;
}
.dp__action_select {
    color: #76d275 !important;
    font-weight: bold;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}
.dp__action_select:focus {
    background-color: transparent !important;
}
.dp__action_select:hover {
    background-color: transparent !important;
}
.dp__action_cancel{
    color: #c0c4cc !important;
    font-weight: bold;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    border: none !important;
}
.input-error{
    font-size: 14px;
    color: rgba(240, 82, 82, 0.82);
    margin-left: 4px;
}
.donation-box{
    box-shadow: 2px 2px 5px #999;
    padding: 12px;
}

.view-cart-header-font{
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.quantity-selction{
    cursor: pointer;
    border: 1px solid black;
}
.view-cart-payment-options{
    background: transparent;
    text-align: center;
    border: 2px solid green;
    width: 100%;
    font-size: 20px;
    padding-top: 5px;
}
.view-cart-payment-options:hover{
    color: blue;
}
.viewcart-table-header{
    /*font-light px-2 text-[1.1rem] text-[#666] p-2    */
    padding: 8px;
    font-weight: lighter;
    font-size: 1.1rem;
    color: #666;
    padding-left: 10px;
}

/* The SVG path that displays the timer's progress */
.time-elapsed-path {
    stroke-width: 4px;
    stroke: rgb(221, 221, 221);
}
.time-left-container {
    /* Size should be the same as that of parent container */
    height: inherit;
    width: inherit;

    /* Place container on top of circle ring */
    position: absolute;
    top: 0;

    /* Center content (label) vertically and horizontally  */
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-left-label {
    font-size: 40px;
    font-family: 'Segoe UI';
    color: black;
}
.time-left-path {
    /* Same thickness as the original ring */
    stroke-width: 4px;

    /* Rounds the path endings  */
    stroke-linecap: round;

    /* Makes sure the animation starts at the top of the circle */
    transform: rotate(90deg);
    transform-origin: center;

    /* One second aligns with the speed of the countdown timer */
    transition: 1s linear all;

    /* Colors the ring */
    stroke: #4CAF50;
}

.svgClass {
    /* Flips the svg and makes the animation to move left-to-right */
    transform: scaleX(-1);
}


#loading {
    width:100%;
    height:100%;
    position:fixed;
    background:rgba(255,255,255,.7);
    z-index:10000;
}
.loader {
    height:20px;
    width:250px;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
}
.loader--dot {
    animation-name:loading-dot;
    animation-timing-function:ease-in-out;
    animation-duration:3s;
    animation-iteration-count:infinite;
    height:20px;
    width:20px;
    border-radius:100%;
    background-color:black;
    position:absolute;
    border:2px solid white;
}
.loader--dot:first-child {
    background-color:#8cc759;
    animation-delay:0.5s;
}
.loader--dot:nth-child(2) {
    background-color:#8c6daf;
    animation-delay:0.4s;
}
.loader--dot:nth-child(3) {
    background-color:#ef5d74;
    animation-delay:0.3s;
}
.loader--dot:nth-child(4) {
    background-color:#f9a74b;
    animation-delay:0.2s;
}
.loader--dot:nth-child(5) {
    background-color:#60beeb;
    animation-delay:0.1s;
}
.loader--dot:nth-child(6) {
    background-color:#fbef5a;
    animation-delay:0s;
}
.loader--text {
    position:absolute;
    top:200%;
    left:0;
    right:0;
    width:4rem;
    margin:auto;
}
.loader--text:after {
    content:"Loading";
    font-weight:bold;
    animation-name:loading-text;
    animation-duration:3s;
    animation-iteration-count:infinite;
}
@keyframes loading-dot {
	15% { transform: translateX(0); }
	45% { transform: translateX(230px); }
	65% { transform: translateX(230px); }
	95% { transform: translateX(0); }
}
@keyframes loading-text {
	 0% { content: "Loading"; }
	25% { content: "Loading."; }
	50% { content: "Loading.."; }
	75% { content: "Loading..."; }
}
