.logoDummyForm{
    border: solid 1px #ddd;
    border-radius: 10px;
    padding-bottom: 15px;
}

.logoDummyCard{
    border-bottom: solid 1px #ddd;
    padding: 15px 10px;
}

.logoDrag{
    background:url("../images/logo-drag.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.bank-card img{
    max-height: 24px;
    width: 100%;
    object-fit: contain;
}

.bank-card.selected{
    border: solid 2px #000;
}

.yearly span i{
    color: #ff0000;
}

.logoDrag .input-drag-file::before{
    content: ' ';
    display: inline-block;
    /* background: linear-gradient(top, #f9f9f9, #e3e3e3); */
    /*     border: 1px solid #999; */
    /*     border-radius: 3px; */
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
    width:73%;
    height: 55px;
}

.favicon-logo{
    width: 100px;
    height: 100px;
}

.faviconLogo input{
    width: 100px;
    height: 100px;
    background: transparent;
    background-position: center center;
    background-size: contain;
    border-radius: 0.6rem;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    padding: 0px;
}

.faviconLogo{
    width: 100px;
    height: 100px;
    background-position: center center;
    background-size: contain;
}

.faviconLogo .input-drag-file::before{
    content: ' ';
    display: inline-block;
    /* background: linear-gradient(top, #f9f9f9, #e3e3e3); */
    /*     border: 1px solid #999; */
    /*     border-radius: 3px; */
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
    width:100px;
    height: 100px;
}

.logoDrag input{
    background: transparent;
    border-radius: 0.6rem;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    padding: 0px;
    height: 55px;
}


.coffe {
    width: 48px;
    height: 40px;
    margin-top: 30px;
    display: inline-block;
    position: relative;
    background: #000000;
    border-radius: 15% 15% 35% 35%;
  }
  .coffe::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 45px;
    top: 8px;
    border: 4px solid #000000;
    width: 16px;
    height: 20px;
    border-radius: 0 4px 4px 0;
  }
  .coffe::before {
    content: '';  
    position: absolute;
    width: 1px;
    height: 10px;
    color: #000000;
    top: -15px;
    left: 11px;
    box-sizing: border-box;
    animation: animloader 1s ease infinite;
  }
  
  @keyframes animloader {
      0% {
    box-shadow: 2px 0px rgba(0, 0, 0, 0), 12px 0px rgba(0, 0, 0, 0.3), 20px 0px rgba(0, 0, 0, 0);
  }
      50% {
    box-shadow: 2px -5px rgba(0, 0, 0, 0.5), 12px -3px rgba(0, 0, 0, 0.5), 20px -2px rgba(0, 0, 0, 0.6);
  }
      100% {
    box-shadow: 2px -8px rgba(255, 255, 255, 0), 12px -5px rgba(255, 255, 255, 0), 20px -5px rgba(255, 255, 255, 0);
  }
    }


/**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
 .success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
    
    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #000;
        
        &::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        
        &::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }
        
        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: transparent;
            transform: rotate(-45deg);
        }
        
        .icon-line {
            height: 5px;
            background-color: #000;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
            
            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }
            
            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }
        }
        
        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgb(0 0 0 / 50%);
        }
        
        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: transparent;
        }
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}


.circle, .circle-border {
	 width: 80px;
	 height: 80px;
	 border-radius: 50%;
}
 .circle {
	 z-index: 1;
	 position: relative;
	 background: white;
	 transform: scale(1);
	 animation: success-anim 700ms ease;
}
 .circle-border {
	 z-index: 0;
	 position: absolute;
	 transform: scale(1.1);
	 animation: circle-anim 400ms ease;
	 background: #6a6a6a;
}
 @keyframes success-anim {
	 0% {
		 transform: scale(0);
	}
	 30% {
		 transform: scale(0);
	}
	 100% {
		 transform: scale(1);
	}
}
 @keyframes circle-anim {
	 from {
		 transform: scale(0);
	}
	 to {
		 transform: scale(1.1);
	}
}
 .error::before, .error::after {
    content: "";
    height: 4px;
    background: #000;
    position: absolute;
    border-radius: 50px;
}
 .error::before {
    width: 50px;
    top: 48%;
    left: 19%;
    transform: rotateZ(50deg);
}
 .error::after {
    width: 50px;
    top: 48%;
    left: 19%;
    transform: rotateZ(-50deg);
}

.navLoadingStatus{
    font-size: 12px;
    color: #9fa2a7;
}