/* Added by Leonardo */
body {

    background-color: #fefaf9;

}


/* animation for angular */
.fade {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.fade.show {
    opacity: 1;
}


.no-image{

    height: 100px;
    width: 100px;
    background-color: rgb(172, 172, 172);
    border-radius: 50%;
    
}



.background-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 45vw; 
    height: 45vw; 
    background-color: #6db5ff; 
    border-radius: 50%;
    transform: translate(25%, -20%); 
    z-index: -1; 
    
}


.blue-circle-lower-right {
    position: absolute;
    top: 65%;
    left: 10%;
    width: 50vw; 
    height: 50vw; 
    background-color: #6eb7ff; 
    border-radius: 50%;
    transform: translate(-50%, -50%); 
    z-index: -1; 
}


.background-circle-leftcorner {
    
    position: absolute;
    top: 15%;
    left: 3%;
    width: 15vw; 
    height: 15vw; 
    background-color: #6eb7ff; 
    border-radius: 50%;
    transform: translate(-50%, -50%); 
    z-index: -1; 
}

.background-circle-leftcorner-2 {
    
    position: absolute;
    top: 23%;
    left: 17%;
    width: 30vw; 
    height: 30vw; 
    background-color: #6eb7ff; 
    border-radius: 50%;
    transform: translate(-50%, -50%); 
    z-index: -1; 
}


.gradient-div {
    background: linear-gradient(90deg, #6db5ff, #e3e3e4);
}



.form-check-input {
    all: unset;
}

.form-check-input {
    appearance: auto;
}


input[type="date"] {
    all: unset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    cursor: pointer;
}


/* Added code  */
/* For progress indicator */

.main-form-container {

    width: 800px;
    height: 950px;
    overflow-y: hidden;

}

.registration-progress {
    display: flex;
    align-items: center;
    /* width: 25%; */
    min-width: 350px; 
    max-width: 500px;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #d3d3d3; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: background-color 0.4s ease-in-out;
}

.line {
    flex: 1;
    height: 4px;
    background-color: #d3d3d3;
    transition: background-color 0.4s ease-in-out;
}

/* Active State */
.circle.active,
.line.active {
    background: var(--gridientt_4, linear-gradient(180deg, #1CB423 0%, #0F7414 100%)) !important;
}

/* 

    When a line became active
    Affect the circle to the right

*/
.line.active + .circle {
    background: var(--gridientt_4, linear-gradient(180deg, #1CB423 0%, #0F7414 100%)) !important;
}


.jumbotron span {

    width: 60%;

}

.jumbotron p {

    width: 40%;

}


.company-image{

    height: 100px;
    width: 100px;
    background-color: rgb(172, 172, 172);
    border-radius: 50% !important;
    border: 1px solid black !important;
    
}


.upload-button a {

    position: relative

}

.upload-button a input {

    position: absolute;
    width: 155px;
    cursor: pointer;
    right: 0;
    top: -6px;
    opacity: 0;

}



.option-placeholder {

    background-color: grey;
    border-radius: 30px;
    height: 200px;
    width: 200px;

}


/* Forms button */
.forms-btn {

    position: absolute;
    max-width: 150px;

}


/* Content display */
/* 

    Comment: 
    Display property is set using bootstrap class 
    
*/
/* .additional-info-1,
.additional-info-2 {



} */



/* Overide Form (input) styles */

/* remove animation of is-invalid */
.is-invalid {

    transition: none !important;
}

.required-fields.highlight {

    border-color: #ED2939;

}


.input-styles {

    border-radius: 20px !important;
    font-size: 1rem !important;

}

.input-date {

    width: calc(100% - 20px) !important;

}

.checkbox-container {

    padding-left: 3rem !important;

}

.custom-slider {

    margin-bottom: 0;

}



/* Button states */

.button-container {

    width: 100%;
    position: absolute;
    bottom: 0;

}

/* if user moves to form_2 */

#previous-btn,
#next-btn,
#skip-btn {

    user-select: none;
    transform: translateX(0%);
    transition: transform 0.4s ease-in-out;

}

#previous-btn.move-active {

    transform: translateX(-120%);

}

#next-btn.move-active {

    transform: translateX(120%);

}


/* if user moves to form_3 */

#save-btn {

    user-select: none;
    transform: translateX(90%);
    opacity: 0;
    z-index: 0;
    max-width: 190px;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;       /* disable button [04/15/2025] */
    cursor: default;            /* disable button [04/15/2025] */
    user-select: none;          /* disable button [04/15/2025] */

}

#save-btn.active {

    opacity: 1;
    pointer-events: all;        /* active button [04/15/2025] */
    cursor: pointer;            /* active button [04/15/2025] */
    user-select: all;           /* active button [04/15/2025] */

}

#skip-btn.move-out {

    opacity: 0;
    transform: translateX(120%);
    pointer-events: none;
    cursor: default;            
    user-select: none; 

}

 [ng-cloak], [data-ng-cloak], [x-ng-cloak],
  .ng-cloak, .x-ng-cloak, .data-ng-cloak {
    display: none !important;
  }

.spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}




/* Added by lorenzo @ 05/05/2025 */
/* Responsive - mobile */

/* Tablet size */
@media (max-width: 767px) {

    .main-form-container {

        width: 450px;       /* Prevents container-fluid behavior */
        height: 1300px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;  

    }


    /* For smaller screen - only on first page */
    #next-btn.custom {
        
        width: 150px;
    }


    #previous-btn,
    #next-btn {

        width: 50px;

    }

    #previous-btn.move-active {

        transform: translateX(-200%);
    
    }
    
    #next-btn.move-active {
    
        transform: translateX(200%);
    
    }

    #save-btn {
        transform: translateX(20%);
    }

    .btn-text {

        display: none;
    }

}


/* Phone size */
@media (max-width: 480px) {


    .main-form-container {

        max-width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;        
    }


    .registration-progress {

        min-width: 250px;

    }

    /* Change size on mobile screens */
    .circle {
        width: 60px;
        height: 60px;
    }


    .jumbotron span {

        width: 100% !important;
    
    }

    .jumbotron p {
        width: 70% !important;
    }

}





/* plan style */
.plan-bg-color {
    background-color: #16961c;
  }
  
  /* Main pricing cards */
  .pricing-card {
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f6f7 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #e3f2fd 0%, #f1f5ff 100%);
  }
  
  .pricing-card-basic:hover {
    background: linear-gradient(180deg, #e3f2fd 0%, #f1f5ff 100%);
  }
  
  .pricing-card-pro:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  }
  
  /* header area (icon + title + subtitle) */
  .plan-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
  }
  
  /* different icon colors per plan */
  .plan-icon-basic {
    background: #16961c;
  }
  
  .plan-icon-pro {
    background: #16961c;
  }
  
  /* plan title + subtitle */
  .plan-title {
    font-weight: 600;
    font-size: 18px;
  }
  
  .plan-subtitle {
    font-size: 13px;
    color: #6b7280;
  }
  
  /* price line */
  .plan-price-main {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
  }
  
  .plan-price-main span {
    font-size: 13px;
    font-weight: 400;
  }
  
  /* feature list */
  .plan-feature {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .plan-feature i {
    margin-right: 6px;
    font-size: 16px;
  }
  
  /* action button at bottom */
  .pricing-card .plan-cta {
    border-radius: 999px;
    padding-inline: 24px;
  }
  
  /* Pro highlight ribbon (keep your existing logic but tweak look) */
  .ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #16961c;
    color: #fff;
    padding: 4px 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 0.75rem;
  }









/* payment channel logos */
.pc-logo-md {
    height: 100px !important;
    width: 100px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
}

.pc-logo-sm {
    height: 60px !important;
    width: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    filter: grayscale(100%) !important;
}


.text-theme {
    color: #16961c;
}

.bg-theme {
    color: white;              
    background-color: #16961c;   
}

.bg-theme:hover {
    color: white;              
    background-color: #16961c;   
}

/* Make warning icon green */
.swal2-icon.swal2-warning {
    border-color: #28a745 !important;
    color: #28a745 !important;
}

