/* Card Hover Effects */
.hover-lift {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.hover-lift img {
   transition: transform 0.3s ease;
}

.hover-lift:hover img {
   transform: scale(1.05);
}

/* Breadcrumb Styles */
.breadcrumb-section {
   background: #f8f9fa;
   padding: 1rem 0;
   border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #9c4e99;
}

.breadcrumb-item.active {
    color: #9c4e99;
    font-weight: 600;
}

/* Service Header Minimal */
.service-header-minimal {
    padding: 3rem 0;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #9c4e99, #6a1b6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.service-icon-large i {
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

/* Service Specifications */
.service-specs {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    border-right: 4px solid #9c4e99;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.spec-label {
    font-weight: 600;
    color: #495057;
    margin-left: 0.5rem;
}

.spec-value {
    color: #6c757d;
}

/* Infinite Scroll Container */
.infinite-scroll-container {
    position: relative;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* Portfolio Card Styles */
.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(156, 78, 153, 0.15);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.portfolio-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.specialist-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialist-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #9c4e99;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.specialist-name {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.price {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.duration {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-action {
    margin-top: auto;
}

/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(156, 78, 153, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-meta {
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.service-action {
    margin-top: auto;
}

/* Placeholder Styles */
.placeholder {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: #6c757d;
}

.placeholder-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #9c4e99, #6a1b6a);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6a1b6a, #9c4e99);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(156, 78, 153, 0.3);
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 2rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
    }

    .service-icon-large i {
        font-size: 2.5rem;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }

    .service-specs {
        padding: 1rem;
    }

    .spec-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .portfolio-content,
    .service-content {
        padding: 1rem;
    }

    .portfolio-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .portfolio-details {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .service-header-minimal {
        padding: 2rem 0;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large i {
        font-size: 2rem;
    }

    .service-icon-img {
        width: 40px;
        height: 40px;
    }

    .display-5 {
        font-size: 1.5rem;
    }
}

/* Service Selection Styles (Specialist Registration) */
.service-selection .service-item {
    margin-bottom: 1rem;
}

.service-selection .card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.service-selection .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
}

.service-selection .card-body {
    padding: 1rem;
}

.service-selection .form-check {
    margin-bottom: 0.5rem;
}

.service-selection .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.service-selection .form-check-label {
    font-weight: 500;
    cursor: pointer;
}

.service-selection .form-check-label:hover {
    color: #0d6efd;
}

/* Terms Page Styles */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.terms-header h1 {
    background: linear-gradient(135deg, #9c4e99, #6a1b6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.section-badge {
    margin-bottom: 1.5rem;
}

.terms-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.terms-item p {
    line-height: 1.8;
    text-align: justify;
}

.alert {
    border-radius: 12px;
    padding: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .terms-section {
        padding: 1rem;
    }

    .terms-item {
        padding: 1rem;
    }
}

/* Profile Page Specialist Panel Button */
.content-box .bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.content-box .bg-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.content-box .bg-primary .dz-icon-box {
    background: rgba(255, 255, 255, 0.2);
}

.content-box .bg-primary span {
    font-weight: 600;
}

/* Specialist Registration - Service Tree View */
.service-tree-container {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    background: #f8f9fa;
}

.service-tree-item {
    margin-bottom: 5px;
}

.service-tree-item .service-item-card {
    border: 1px solid #e9ecef;
    border-left: 3px solid #6c757d;
    border-radius: 6px;
    background: white;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.service-tree-item .service-item-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left-width: 4px;
}

.service-tree-item .service-item-header {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-tree-item .service-item-header:hover {
    background: #f8f9fa;
}

.service-tree-item .service-item-header label {
    cursor: pointer;
    user-select: none;
}

.service-tree-item .service-item-header .form-check {
    margin: 0;
}

.service-tree-item .service-item-header .form-check-input {
    cursor: pointer;
}

.service-tree-item .service-item-header .toggle-btn {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-tree-item .service-item-header .toggle-btn:hover {
    color: #0d6efd;
    transform: scale(1.1);
}

.service-tree-item .service-item-header .toggle-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-tree-item .service-children {
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-tree-item .service-children-content {
    padding: 0.5rem 0.75rem 0.5rem 0;
}

/* Level Colors */
.service-tree-item[style*="margin-left: 0px"] > .service-item-card {
    border-left-color: #0d6efd;
    border-left-width: 4px;
    background: linear-gradient(to right, rgba(13, 110, 253, 0.03), white);
}

.service-tree-item[style*="margin-left: 15px"] > .service-item-card {
    border-left-color: #6610f2;
    background: linear-gradient(to right, rgba(102, 16, 242, 0.03), white);
}

.service-tree-item[style*="margin-left: 30px"] > .service-item-card {
    border-left-color: #20c997;
    background: linear-gradient(to right, rgba(32, 201, 151, 0.03), white);
}

.service-tree-item[style*="margin-left: 45px"] > .service-item-card {
    border-left-color: #fd7e14;
    background: linear-gradient(to right, rgba(253, 126, 20, 0.03), white);
}

.service-tree-item[style*="margin-left: 60px"] > .service-item-card {
    border-left-color: #dc3545;
    background: linear-gradient(to right, rgba(220, 53, 69, 0.03), white);
}

.service-tree-item[style*="margin-left: 75px"] > .service-item-card {
    border-left-color: #e83e8c;
    background: linear-gradient(to right, rgba(232, 62, 140, 0.03), white);
}

.service-tree-item[style*="margin-left: 90px"] > .service-item-card {
    border-left-color: #17a2b8;
    background: linear-gradient(to right, rgba(23, 162, 184, 0.03), white);
}

/* Service Show Page - Subcategory Slider */
.subcategory-slider-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.subcategory-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.subcategory-slider::-webkit-scrollbar {
    display: none;
}

.subcategory-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.subcategory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.subcategory-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c4e99, #6a1b6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.5rem;
}

.subcategory-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    line-height: 1.3;
}

.sub-service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.sub-service-card .card-img-top:hover {
    transform: scale(1.05);
}

.bg-gradient-dark {
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}

.price-tag {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.duration-tag {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.placeholder-icon-large {
    font-size: 3rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .subcategory-slider {
        gap: 1rem;
    }

    .subcategory-item {
        min-width: 100px;
        padding: 0.75rem;
    }

    .subcategory-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .subcategory-title {
        font-size: 0.8rem;
    }
}

/* Services Page - Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

@supports not (display: grid) {
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .service-item {
        flex: 0 0 calc(25% - 0.75rem);
        margin-bottom: 1rem;
    }
}

.service-item {
    display: flex;
    min-height: 0;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(156, 78, 153, 0.15);
    border-color: #9c4e99;
}

.service-icon-container {
    background: linear-gradient(135deg, #9c4e99, #6a1b6a);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-icon-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.service-icon {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-item {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.stat-item i {
    font-size: 0.7rem;
}

.category-badge {
    background: linear-gradient(135deg, #9c4e99, #6a1b6a);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.service-action {
    padding: 0 1rem 1rem;
    margin-top: auto;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    margin-bottom: 1.5rem;
}

.empty-title {
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-description {
    color: #adb5bd;
    margin-bottom: 2rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #9c4e99;
    box-shadow: 0 0 0 0.2rem rgba(156, 78, 153, 0.25);
}

.input-group-text {
    border-color: #dee2e6;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.stat-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Portfolio List - Portfolio Overlay */
.portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Services Page Responsive Breakpoints */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .service-card {
        border-radius: 12px;
        margin: 0;
    }

    .service-icon-container {
        padding: 1rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }

    .service-content {
        padding: 1rem;
    }

    .service-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .service-stats {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .stat-item {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .service-action {
        padding: 0 1rem 1rem;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .empty-state {
        padding: 2rem 0.5rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 1.25rem !important;
    }
}

@media (min-width: 481px) and (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
    }

    .service-item {
        flex: 0 0 100%;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .service-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .service-item {
        flex: 0 0 calc(33.333% - 0.75rem);
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }

    .service-item {
        flex: 0 0 calc(25% - 0.75rem);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Booking Success Page Styles */
.success-animation {
    animation: fadeIn 0.5s ease-in;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.checkmark-circle .background {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #22c55e;
    position: absolute;
}

.checkmark-circle .checkmark {
    border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.checkmark-circle .checkmark:after {
    opacity: 1;
    height: 50px;
    width: 25px;
    transform-origin: left top;
    border-right: 5px solid white;
    border-top: 5px solid white;
    content: '';
    left: 25px;
    top: 50px;
    position: absolute;
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 25px;
        opacity: 1;
    }
    40% {
        height: 50px;
        width: 25px;
        opacity: 1;
    }
    100% {
        height: 50px;
        width: 25px;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
