﻿@import url('fonts_googleapis_family.css');


/* CSS Cache Bust - Updated: 2024-01-15 */
@font-face {
    font-family: 'inter-regular';
    src: url('../lib/fontawesome/webfonts/inter-regular.ttf') format('truetype');
}

/* Enhanced Permission Tree Styles */
.permission-tree {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    border: 1px solid #e9ecef !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.permission-tree:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

.permission-tree::-webkit-scrollbar {
    width: 8px;
}

.permission-tree::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
    margin: 4px;
}

.permission-tree::-webkit-scrollbar-thumb {
    background: #6c757d;
    border-radius: 4px;
    border: 1px solid #f8f9fa;
}

.permission-tree::-webkit-scrollbar-thumb:hover {
    background: #495057;
}

.permission-tree .tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.permission-tree .tree li {
    position: relative;
    margin: 4px 0;
    padding: 4px 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 24px;
}

.permission-tree .tree li:hover {
    background-color: rgba(0, 48, 87, 0.05);
    transform: translateX(2px);
}

.permission-tree .tree li.jstree-open {
    background-color: rgba(0, 48, 87, 0.02);
}

.permission-tree .tree li.jstree-closed {
    background-color: transparent;
}

/* Compact Toggle Icon Styles */
.permission-tree .toggle-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: bold;
    margin-right: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 48, 87, 0.2);
    flex-shrink: 0;
    align-self: center;
}

.permission-tree .toggle-icon:hover {
    background-color: var(--primary-8);
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 48, 87, 0.3);
}

.permission-tree .toggle-icon.si-plus:before {
    content: '+';
}

.permission-tree .toggle-icon.si-minus:before {
    content: '−';
}

/* Compact Checkbox Styles */
.permission-tree input[type="checkbox"] {
    margin-right: 6px;
    transform: scale(0.9);
    accent-color: var(--primary);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
}

.permission-tree label {
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
    margin-left: 2px;
    font-size: 0.9rem;
    flex: 1;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.permission-tree label:hover {
    color: var(--primary);
}

.permission-tree input[type="checkbox"]:checked + label {
    color: var(--primary);
    font-weight: 600;
}

/* Compact Nested Level Styling */
.permission-tree .tree ul {
    margin-left: 16px;
    border-left: 1px solid #e9ecef;
    padding-left: 10px;
    margin-top: 4px;
}

.permission-tree .tree ul li {
    position: relative;
}

.permission-tree .tree ul li:before {
    content: '';
    position: absolute;
    left: -11px;
    top: 50%;
    width: 8px;
    height: 1px;
    background-color: #e9ecef;
}

/* Animation for smooth expand/collapse */
.permission-tree .tree ul {
    overflow: hidden;
    transition: all 0.2s ease;
}

/* Compact focus states */
.permission-tree input[type="checkbox"]:focus {
    outline: 1px solid var(--primary);
    outline-offset: 1px;
}

.permission-tree .toggle-icon:focus {
    outline: 1px solid var(--primary);
    outline-offset: 1px;
}

/* Tree content styling */
.permission-tree .tree {
    max-height: none;
    overflow: visible;
}

/* Enhanced Search functionality styling */
.permission-search {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.permission-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-8));
}

.permission-search .input-group {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.permission-search .form-control {
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.95rem;
    padding: 12px 16px;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.permission-search .form-control:focus {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(0, 48, 87, 0.1);
    border-color: var(--primary);
}

.permission-search .input-group-append .btn {
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-8) 100%);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.permission-search .input-group-append .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.permission-search .input-group-append .btn:hover {
    background: linear-gradient(135deg, var(--primary-8) 0%, var(--primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 48, 87, 0.3);
}

.permission-search .input-group-append .btn:hover::before {
    left: 100%;
}

.permission-search .input-group-append .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 48, 87, 0.2);
}

.tree-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 8px;
    background: rgba(248, 249, 250, 0.3);
}

.tree-container::-webkit-scrollbar {
    width: 8px;
}

.tree-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
    margin: 4px;
}

.tree-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 4px;
    border: 1px solid #f8f9fa;
}

.tree-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@font-face {
    font-family: 'notonaskharabic-regular';
    src: url('../lib/fontawesome/webfont/notonaskharabic-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'notonaskharabic-bold';
    src: url('../lib/fontawesome/webfont/notonaskharabic-bold.ttf') format('truetype');
}
@font-face {
    font-family: 'notonaskharabic-medium';
    src: url('../lib/fontawesome/webfont/notonaskharabic-medium.ttf') format('truetype');
}
@font-face {
    font-family: 'notonaskharabic-semibold';
    src: url('../lib/fontawesome/webfont/notonaskharabic-semibold.ttf') format('truetype');
}
:root {
    --primary-bg-color: #003057;
    --primary-bg-hover: #003057;
    --primary-bg-border: #003057;
    --primary: #003057;
    --primary-1: rgba(1, 98, 232, 0.1);
    --primary-2: rgba(1, 98, 232, 0.2);
    --primary-2: rgba(1, 98, 232, 0.3);
    --primary-5: rgba(1, 98, 232, 0.5);
    --primary-8: #33D0C2;
    --primary-transparentcolor: #0581a70f;
    --transparentprimary-transparentcolor: rgba(255, 255, 255, 0.05);
    --transparent-body: #0b5bc9;
    --Neutral: #001425;
    --Neutral---50: #E6E8E9;
    --transparent-theme: rgba(0, 0, 0, 0.1);
    --blue: #003057;
    --purple: $purple;
    --pink: $pink;
    --Status-Error: #E51A1A;
    --Neutral---300: #54626D;
    --red: $danger;
    --orange: $orange;
    --yellow: $warning;
    --green: $success;
    --teal: $teal;
    --cyan: $info;
    --white: $white;
    --gray: $gray-600;
    --gray-dark: $gray-800;
    --secondary: #33D0C2;
    --success: $success;
    --info: $info;
    --warning: $warning;
    --danger: $danger;
    --light: $gray-100;
    --dark: $gray-800;
    --indigo: #0581A7;
    --bs-gray-500: #ced4da;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 992px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'lato-regular', "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body, html {
    font-family: "Inter";
    /*font-family: "inter-regular";*/
    font-size: 16px;
}
body.rtl, html .rtl {
    font-family: 'notonaskharabic-regular'
}

#intro {
    padding-top: 12.8125rem;
}
.rtl .row {
    flex-direction: row-reverse;
}

.rtl .form.loginForm {
    left: auto;
    right: 0;
    direction: rtl;
    font-size:0.8rem
}
.showonmob
{
    display:none
}
.rtl .card-header {
    text-align: right;
}

    .rtl .form.loginForm .form-floating > label {
        left: auto;
        right: 0
    }

.rtl .form.loginForm .togglePassword, .rtl .form.loginForm .username-icon, .rtl .form.loginForm .togglePassword2,
.rtl .form.loginForm .companyName-icon, .rtl .form.loginForm .email-icon {
    left: 15px;
    right: auto;
}


.rtl .form.formOTP {
    right: 0;
    left: auto;
    direction:rtl;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px var(--primary);
    
}
.langanchor {
    text-align: center;
    text-decoration: underline;
    display: inline-block;
    background: none;
    color: var(--primary);
}
.card, .card-header, .card-body, .card-footer {
    border: 0;
    background-color: transparent;
    padding: 0;
}
.card-footer label {
    color: var(--Neutral, #001425);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: 0.15px;
}

    .card {
        display: grid;
        place-items: center stretch;
        align-content: space-around;
        height: 100%;
    }

.navbar .nav-link {
    color: #fff !important;
}

.form {
    color: #000000;
    background: white !important;
    /*position: absolute;
    right: 0;*/
    width: 34.65%;
    font-size:14px;
}
.card-header p {
    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    letter-spacing: 0.25px;
}
.card-header p b {
    font-size: 0.875rem;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(.8) translateY(-0.85rem) !important;
}
    .form a {
        color: var(--primary);
    }
.btn-primary {
    background-color: var(--primary);
    border: var(--primary-bg-hover);
    transition: all .55s ease-Out;
    padding: 0.75rem 4.5rem !important;
    border-radius:50px;
    color:#ffffff !important
}

    .btn-primary:hover {
        color: #fff !important;
        background-color: var(--primary-bg-hover);
        border-color: var(--primary-bg-hover);
        transition: background-color 0.25s;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: var(--primary-bg-hover);
        border-color: none !important;
        box-shadow: var(--primary-bg-hover) !important;
    }

a {
    color: #ced4da;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

    a:hover {
        color: #042f39ba !important;
        transition: color 0.25s;
    }

.form-check-input:checked {
    background-color: #3691a7;
    border-color: #3691a7;
}

.form-control {
    background-color: transparent;
    color: inherit;
    border-radius: 6px !important;
    /*height: calc(3rem + 2px) !important;*/
    height: 56px ;
    padding: 16px 16px 16px 24px;
}

    .form-control:focus {
        color: inherit;
        background-color: transparent;
        border-color: var(--primary);
        outline: 0;
        box-shadow: 0 0 11px 0rem #3691a738;
        /*height: calc(2.2rem + 1px) !important;*/
    }


.form-floating > label {
    position: absolute;
    top: 0;
    left: 160px !important;
    font-size: 15px;
}

.clickPass {
    font-size: 14px;
    text-decoration: none;
    color: #54626D !important;
    font-weight:500
}

.togglePassword, .username-icon, .companyName-icon, .email-icon  ,.togglePassword2 {
    position: absolute;
    right: 15px;
    top: 45px;
    cursor: pointer;
}


#otp, #forgetPassword {
    transition: opacity 0.2s linear;
}

#login {
    transition: opacity 0.6s linear;
}

input {
    background: transparent;
}

    input:-webkit-autofill {
        background: content-box;
        -webkit-box-shadow: 0px 0px 0 0px inset !important;
    }

form input.otp {
    display: inline-block;
/*    width: 70px;*/ 
    width: 15%;
    height: 50px !important;
    text-align: center;
    border-radius: 6px !important;
    padding: 0.375rem 0.75rem !important;
    border: 1px solid var(--bs-gray-500);
}
.otp.form-control:focus {
    height: 50px !important;
}




body {
    /*background: #ececec;*/
    overflow-x: hidden;
    background-color: #F1F4F8;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), /* makes front image semi-transparent */
    url('../img/hyperpay/front.png'), url('../img/hyperpay/back.png');
    /*background-repeat: no-repeat, no-repeat, no-repeat;*/
    background-size: cover, cover, cover;
    background-position: center, center, center;
    height:100%;
}
    body.rtl {
       background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), /* makes front image semi-transparent */
        url('../img/hyperpay/front.png'), url('../img/hyperpay/back-ar.png');
    }
#global-loader.hidden {
    display: none;
}

#global-loader {
    display: inline-block;
}

.loader-img {
    display: block;
    width: 64px;
    height: 64px;
    margin: 20% auto;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.loading-spin {
    animation: spin 1s linear infinite;
    width: 40px; /* adjust size as needed */
    height: 40px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.25);
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #ced4da;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.76562rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(59, 176, 1, 0.9);
    border-radius: 3px;
}

.was-validated .form-control:valid, .form-control.is-valid, input.form-control.parsley-success, textarea.form-control.parsley-success {
    border-color: #ced4da;
    padding-right: calc(0em + 0.75rem);
    background-image: none;
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:valid:focus, .form-control.is-valid:focus, input.form-control.parsley-success:focus, textarea.form-control.parsley-success:focus {
        border-color: #ced4da;
        box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25);
    }

    .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip {
        display: block;
    }

    .form-control.is-valid ~ .valid-feedback, input.form-control.parsley-success ~ .valid-feedback, textarea.form-control.parsley-success ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, input.form-control.parsley-success ~ .valid-tooltip, textarea.form-control.parsley-success ~ .valid-tooltip {
        display: block;
    }

.was-validated textarea.form-control:valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

textarea.form-control.is-valid, textarea.form-control.parsley-success {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid, input.form-select.parsley-success, textarea.form-select.parsley-success {
    border-color: #ced4da;
    padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300cccc ' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-select:valid:focus, .form-select.is-valid:focus, input.form-select.parsley-success:focus, textarea.form-select.parsley-success:focus {
        border-color: #ced4da;
        box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25);
    }

    .was-validated .form-select:valid ~ .valid-feedback, .was-validated .form-select:valid ~ .valid-tooltip {
        display: block;
    }

    .form-select.is-valid ~ .valid-feedback, input.form-select.parsley-success ~ .valid-feedback, textarea.form-select.parsley-success ~ .valid-feedback, .form-select.is-valid ~ .valid-tooltip, input.form-select.parsley-success ~ .valid-tooltip, textarea.form-select.parsley-success ~ .valid-tooltip {
        display: block;
    }

.was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip {
    display: block;
}

.form-control-file.is-valid ~ .valid-feedback, input.form-control-file.parsley-success ~ .valid-feedback, textarea.form-control-file.parsley-success ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip, input.form-control-file.parsley-success ~ .valid-tooltip, textarea.form-control-file.parsley-success ~ .valid-tooltip {
    display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label, input.form-check-input.parsley-success ~ .form-check-label, textarea.form-check-input.parsley-success ~ .form-check-label {
    color: #031b4e;
}

.was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip {
    display: block;
}

.form-check-input.is-valid ~ .valid-feedback, input.form-check-input.parsley-success ~ .valid-feedback, textarea.form-check-input.parsley-success ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, input.form-check-input.parsley-success ~ .valid-tooltip, textarea.form-check-input.parsley-success ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label, input.custom-control-input.parsley-success ~ .custom-control-label, textarea.custom-control-input.parsley-success ~ .custom-control-label {
    color: #031b4e;
}

    .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before, input.custom-control-input.parsley-success ~ .custom-control-label::before, textarea.custom-control-input.parsley-success ~ .custom-control-label::before {
        border-color: #031b4e;
    }

.was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip {
    display: block;
}

.custom-control-input.is-valid ~ .valid-feedback, input.custom-control-input.parsley-success ~ .valid-feedback, textarea.custom-control-input.parsley-success ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip, input.custom-control-input.parsley-success ~ .valid-tooltip, textarea.custom-control-input.parsley-success ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before, input.custom-control-input.parsley-success:checked ~ .custom-control-label::before, textarea.custom-control-input.parsley-success:checked ~ .custom-control-label::before {
    border-color: #4ce301;
    background-color: #4ce301;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before, input.custom-control-input.parsley-success:focus ~ .custom-control-label::before, textarea.custom-control-input.parsley-success:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, input.custom-control-input.parsley-success:focus:not(:checked) ~ .custom-control-label::before, textarea.custom-control-input.parsley-success:focus:not(:checked) ~ .custom-control-label::before, .was-validated .form-file-input:valid ~ .form-file-label, .form-file-input.is-valid ~ .form-file-label, input.form-file-input.parsley-success ~ .form-file-label, textarea.form-file-input.parsley-success ~ .form-file-label {
    border-color: #ced4da;
}

.was-validated .form-file-input:valid ~ .valid-feedback, .was-validated .form-file-input:valid ~ .valid-tooltip {
    display: block;
}

.form-file-input.is-valid ~ .valid-feedback, input.form-file-input.parsley-success ~ .valid-feedback, textarea.form-file-input.parsley-success ~ .valid-feedback, .form-file-input.is-valid ~ .valid-tooltip, input.form-file-input.parsley-success ~ .valid-tooltip, textarea.form-file-input.parsley-success ~ .valid-tooltip {
    display: block;
}

.was-validated .form-file-input:valid:focus ~ .form-file-label, .form-file-input.is-valid:focus ~ .form-file-label, input.form-file-input.parsley-success:focus ~ .form-file-label, textarea.form-file-input.parsley-success:focus ~ .form-file-label {
    border-color: #ced4da;
    box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #ee335e;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.76562rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 3px;
}

.was-validated .form-control:invalid, .form-control.is-invalid, input.form-control.parsley-error, textarea.form-control.parsley-error {
    border-color: #ee335e;
    padding-right: calc(1.5em + 0.75rem);
    background-image: none;
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, input.form-control.parsley-error:focus, textarea.form-control.parsley-error:focus {
        border-color: #ee335e;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

    .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip {
        display: block;
    }

    .form-control.is-invalid ~ .invalid-feedback, input.form-control.parsley-error ~ .invalid-feedback, textarea.form-control.parsley-error ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, input.form-control.parsley-error ~ .invalid-tooltip, textarea.form-control.parsley-error ~ .invalid-tooltip {
        display: block;
    }

.was-validated textarea.form-control:invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

textarea.form-control.is-invalid, textarea.form-control.parsley-error {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid ~ .select2-container, .form-select.is-invalid ~ .select2-container, input.form-select.parsley-error, textarea.form-select.parsley-error {
    border-color: #ee335e;
    padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    /*background:  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fa5c7c' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23fa5c7c' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
}

    .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus, input.form-select.parsley-error:focus, textarea.form-select.parsley-error:focus {
        border-color: #ee335e;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.was-validated .form-select:invalid ~ .invalid-feedback, .was-validated .form-select:invalid ~ .invalid-tooltip {
    display: block;
}

.form-select.is-invalid ~ .invalid-feedback, input.form-select.parsley-error ~ .invalid-feedback, textarea.form-select.parsley-error ~ .invalid-feedback, .form-select.is-invalid ~ .invalid-tooltip, input.form-select.parsley-error ~ .invalid-tooltip, textarea.form-select.parsley-error ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip {
    display: block;
}

.form-control-file.is-invalid ~ .invalid-feedback, input.form-control-file.parsley-error ~ .invalid-feedback, textarea.form-control-file.parsley-error ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip, input.form-control-file.parsley-error ~ .invalid-tooltip, textarea.form-control-file.parsley-error ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label, input.form-check-input.parsley-error ~ .form-check-label, textarea.form-check-input.parsley-error ~ .form-check-label {
    color: #ee335e;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip {
    display: block;
}

.form-check-input.is-invalid ~ .invalid-feedback, input.form-check-input.parsley-error ~ .invalid-feedback, textarea.form-check-input.parsley-error ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, input.form-check-input.parsley-error ~ .invalid-tooltip, textarea.form-check-input.parsley-error ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label, input.custom-control-input.parsley-error ~ .custom-control-label, textarea.custom-control-input.parsley-error ~ .custom-control-label {
    color: #ee335e;
}

    .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before, input.custom-control-input.parsley-error ~ .custom-control-label::before, textarea.custom-control-input.parsley-error ~ .custom-control-label::before {
        border-color: #ee335e;
    }

.was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip {
    display: block;
}

.custom-control-input.is-invalid ~ .invalid-feedback, input.custom-control-input.parsley-error ~ .invalid-feedback, textarea.custom-control-input.parsley-error ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip, input.custom-control-input.parsley-error ~ .invalid-tooltip, textarea.custom-control-input.parsley-error ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before, input.custom-control-input.parsley-error:checked ~ .custom-control-label::before, textarea.custom-control-input.parsley-error:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before, input.custom-control-input.parsley-error:focus ~ .custom-control-label::before, textarea.custom-control-input.parsley-error:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, input.custom-control-input.parsley-error:focus:not(:checked) ~ .custom-control-label::before, textarea.custom-control-input.parsley-error:focus:not(:checked) ~ .custom-control-label::before, .was-validated .form-file-input:invalid ~ .form-file-label, .form-file-input.is-invalid ~ .form-file-label, input.form-file-input.parsley-error ~ .form-file-label, textarea.form-file-input.parsley-error ~ .form-file-label {
    border-color: #ee335e;
}

.was-validated .form-file-input:invalid ~ .invalid-feedback, .was-validated .form-file-input:invalid ~ .invalid-tooltip {
    display: block;
}

.form-file-input.is-invalid ~ .invalid-feedback, input.form-file-input.parsley-error ~ .invalid-feedback, textarea.form-file-input.parsley-error ~ .invalid-feedback, .form-file-input.is-invalid ~ .invalid-tooltip, input.form-file-input.parsley-error ~ .invalid-tooltip, textarea.form-file-input.parsley-error ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-file-input:invalid:focus ~ .form-file-label, .form-file-input.is-invalid:focus ~ .form-file-label, input.form-file-input.parsley-error:focus ~ .form-file-label, textarea.form-file-input.parsley-error:focus ~ .form-file-label {
    border-color: #ee335e;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.otp + label {
    display: none !important;
}
.mobformat, .passwordformat {
    color: var(--Neutral---300);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.25px;
}
.editoneyeposition .fa-eye-slash {
    top:34%
}
.passwordformat {
    color: rgba(0, 0, 0, 0.70);
    font-size: 0.875rem;
}
#login label.error, label.error, label.error.invalid-feedback label {
    /*display: none !important;*/
    color: var(--Status-Error);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 18px; /* 138.462% */
    letter-spacing: 0.25px;
}
#login input.form-control
{
    font-size:0.8rem;
}
.rtl #login input.form-control {
    text-align: right;
    direction: ltr;
}
.btn-anchor {
    color: var(--primary);
}
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
.form#ResetPasswordForm {
    background:#ffffff
}
.fa.fa-eye-slash.togglePassword.fa-eye:before, .fa.fa-eye-slash.togglePassword2.fa-eye:before {
    content: "\f06e";
}
.forgetpasslink {
    color: var(--primary);
}
.center-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.activation-box {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.terms-container {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.TermsConditions {
    color: var(--primary-bg-color);
    font-size:0.8rem
}
.right-side {
    color: #000000;
}
.right-side p
{
    margin-bottom:72px;
}
.rtl input[placeholder="الرجاء كتابة رقم الهاتف"]
{
    direction:ltr !important
}
.custom-p-slider {
    font-size: 13px;
    margin-bottom:45px
}
.form.loginForm, .form.formOTP {
    display: flex;
    width: 541px;
    padding: 40px;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 40px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px #E7E7E7;
}
    .form.loginForm
    {
        padding:2.5rem
    }
    a.text-white-font {
        color: #ffffff !important
    }

.h-100vh {
    height: 100vh
}
.intropadding
{
    padding-right:6rem;
    padding-left:310px;
}

.btnGroup .timer #resendButtonOTP {
    margin-left: 110px;
}


/*start New Changes for Design*/
.addbgcolor {
    background-color: #F1F4F8;
    /*background-image: linear-gradient(94deg, #F2F4F31A, #ffffff);*/
    padding-top:205px;
}
.leftside h6 {
    border-left: 3px solid var(--secondary);
    padding-left: 10px;
    font-size: 20px;
}
.leftside {
    color: #000000;
    font-size: 14px;
   /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
}
    .leftside p {
        font-size: 14px;
        margin-bottom:0
    }
.float-right
{
    float:right
}
.rtl .float-right {
    float: left
}
.float-left
{
    float:left
}
.rtl .float-left
{
    float:right
}

.text-right {
    text-align: right
}
.rtl .text-right {
    text-align:left
}
.form .btn, .form a.btn-primary {
    width: 100%;
    border-radius: 2rem;
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0 !important;
}
.btn-outline-primary
{
    color:var(--primary);
    border-color:var(--primary)
}
.btn-check:active + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus, .btn-outline-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    box-shadow: none
}
.text-muted {
    color: #00000066;
    font-size: 0.875rem;
}
.addbgcolor .form {
    padding: 40px;
    box-shadow: 0px 0px 10px #E7E7E7;
}
.text-left
{
    text-align:left;
}
.rtl .text-left
{
    text-align:right;
}
.timer a {
    text-decoration:none;
}
.timer a span{
   color:#000000;
}
.timer span {
    color: #000000;
    font-size: 0.875rem;
}
.language {
    float:right
}
.rtl .language {
    float:left
}

/*.termsandcodition, .copyright {
    display:inline-block;
    color: #001425;
    font-size: 14px;
}*/

.termsandcodition a{
    margin-left:2rem;
    margin-right:0;
    font-size:0.875rem;
}
.rtl .termsandcodition a{
    margin-right:2rem;
    margin-left:0
}
.language-wrapper {
    position: relative;
    display: inline-block;
}
.languageddl {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 35px;
    padding-right: 35px;
    background: url('../img/hyperpay/globe.svg') no-repeat 8px center,url('../img/hyperpay/chevron-down.svg') no-repeat right 8px center;
    background-size: 18px 18px;
    height: 25px;
    cursor: pointer;
    border: 0;
    color: #000;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.rtl .addbgcolor {
    background-image: linear-gradient(265deg, #F2F4F31A, #ffffff);
}
.rtl .keepltr
{
    direction:ltr
}
.rtl .leftside h6 {
    border-right: 3px solid var(--secondary);
    padding-right: 4px;
    border-left: 0;
    padding-left: 0;
}
.rtl .leftside
{
    direction:rtl
}

.languageddl option:hover, .languageddl option:focus {
    background-color: red !important
}
.languageddl option {
    padding: 40px 40px;
}
.username-icon {
    background-image: url(../img/hyperpay/user.svg);
    background-size: 20px;
    background-position: center;
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    font-size: 0;
    top: 50%;
    right: 16px;
}
.fa-eye-slash {
    font-size: 0;
    background-image: url('../img/hyperpay/eye-slash.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    top: 34%;
    right: 16px;
}
    .fa-eye-slash.fa-eye {
        background-image: url('../img/hyperpay/eye.svg');
        top: 34%
    }

    /***/



.companyName-icon {
    background-image: url('../img/hyperpay/home-2.svg');
    background-size: 20px;
    background-position: center;
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    font-size: 0;
    top:50%;
}

.email-icon {
    background-image: url('../img/hyperpay/email.svg');
    background-size: 20px;
    background-position: center;
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    font-size: 0;
    top:50%;
}
.topsection {
    padding-top: 24px;
    padding-right: 10.5%;
    padding-left: 10.5%;
}
.rtl .topsection {
  flex-direction:row-reverse
}
.addbgcolor .card-header h4 {
    color: #000000;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    margin-bottom:0
}
.mb-56
{
    margin-bottom:3.5rem;
}
.addbgcolor label {
    color: var(--Neutral);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.1px;
}
.mb-40
{
    margin-bottom:2.5rem;
}

.footerbottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6.5% 1rem 6.5%;
    background: none;
    background-color: transparent;
    width: 100%;
}
    .rtl .footerbottom
    {
        flex-direction:row-reverse
    }
    .footerbottom .termsandcodition, .footerbottom .copyright {
        color: var(--Neutral, #001425);
        text-align: center;
        /* English/Desktop/Body 2 */
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 128.571% */
        letter-spacing: 0.25px;
    }
.rtl .copyright
{
    direction:rtl
}
.onlogin .leftside {
    padding-top: 112px;
}
.verymsg {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.25px;
}
.mb-24
{
    margin-bottom:1.5rem;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu-lang {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    margin-top: 0;
}

    .dropdown-menu-lang .dropdown-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 168px;
        height: 42px;
        padding: 12px 24px;
        gap: 10px;
        background: white;
        border-top-right-radius:8px;
        border-top-left-radius:8px;
    }

.dropdown-item {
    color: #001425 !important;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 168px;
    height: 52px;
    padding: 16px 24px;
    box-sizing: border-box;
}

.dropdown-menu-lang .active {
    gap: 0px;
    background: #F4F8FB;
}



.newflex {
    display: inline-flex;
    align-items: center;
    gap: 14.0625rem;
    /*flex-wrap: wrap;*/
    margin-top: 7.375rem;
}
.rtl .newflex {
  flex-direction:row-reverse
}
.newedithere {
    display: flex;
    width: 33.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.5rem;
}
.topsection {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand
{
    padding:0;
    margin:0
}
.newedithere.leftside div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.leftside p {
    margin-bottom: 0;
    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    letter-spacing: 0.0156rem;
}
.form .card .card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}
    .form .card .card-header h4 {
        margin-bottom: 0;
        color: #000;
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: 3rem; 
    }   
  
    .form .card .card-header span {
        color: #000;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 128.571% */
        letter-spacing: 0.25px;
    }
.form .card-body .position-relative.mb-40 label {
    margin-bottom:4px;
    font-size:0.875rem;
}
.form .card-body label {
    font-size:0.875rem;
}
.form.RegisterForm .card-body .position-relative.mb-24 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.285rem;
    align-self: stretch;
}
.forpassword .fa-eye-slash {
    top:50%;
}
.phoneDev .select2-container {
    width: 28% !important;
}
.phoneDev span.selection {
    font-size:0.875rem
}
.phoneDev .phonedropdownlist .select2-container {
    padding: 2% 1% 1.5% 2%
}

#phone-dropdown {
    width: 22%;
}

.phonedropdownlist {
    width: 28% !important;
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.select2-full-widthphone {
    width: 285px !important;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-container--default .select2-results > .select2-results__options {
    margin: 4px;
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #eae8f1;
    box-sizing: border-box;
    display: block;
    position: absolute;
}

.select2-container {
    text-align: left;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 56px;
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid #DCE5F0;
}

    .select2-container::after {
        content: "";
        background-image: url(../img/hyperpay/arrowdown.svg);
        background-repeat: no-repeat;
        background-size: 20px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
    }

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eae8f1;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-results__option {
    padding: 8px;
    border-top: 1px solid var(--border-table);
    /* border-top: 0; */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    font-size:0.875rem
}
.flag-icon {
    width: 24px;
    height: 17.143px;
}
.phoneDev .select2-selection__rendered {
    display: flex;
    padding-right: 0.5rem;
    align-items: center;
    gap: 0.625rem;
    border-right: 1px solid var(--Neutral---50);
}
.phoneDev .select2 {
    border-top-right-radius:0;
    border-bottom-right-radius:0;
    border-right: 0;
    padding-right:0.5rem
}
.phoneDev .select2-container {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    border-color:#ced4da
}
.phoneDev .select2-container::after {
    display: none;
}
.phonenumberinput {
    border-left: 0;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-left:0
}
.gap-12 {
    gap: 0.75rem
}


.btn-primary:disabled {
    background-color: var(--Neutral---50) !important;
}

.btn-primary.disabled {
    background-color: var(--Neutral---50) !important;
}
.newedithere h6 {
    margin-bottom: 0;
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
}
.rtl .newedithere h6, .rtl .form .card .card-header h4 {
    font-weight: 700;
}
form label
{
    font-weight:500;
}
.main-content {
    padding-bottom: 10.3125rem;
}

.rtl .phoneDev {
    flex-direction: row-reverse;
}


.SucessMesg {
    height: 6.5rem; /* 104px */
    width: 33.81rem; /* 541px */
    display: flex;
    padding: 1rem; /* 16px */
    justify-content: center;
    align-items: center;
    gap: 0.625rem; /* 10px */
    align-self: stretch;
    border-radius: 0.5rem; /* 8px */
    background: var(--Secondary---600, #00B2A3);
}

.ColorMesg {
    color: var(--White, #FFF);
    font-size: 0.875rem; /* 14px */
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem; /* 18px */
    letter-spacing: 0.015625rem; /* 0.25px */
}
.custom.alert-danger {
    border-radius: 20px;
    background: var(--Status-Error, #E51A1A);
}
.rtl .custom.alert-danger {
    direction: rtl
}
.no-autofill-bkg.error, .phonenumberinput.error {
    border-color: red
}

.rtl .phonenumberinput {
    text-align: left !important
}

.mb-4px {
    margin-bottom: 0.25rem
}
@media (max-width: 1600px) {
    html {
        font-size: 14px;
    }

    .form.loginForm {
        /* padding: 1.8rem;*/
    }

    .form-control {
        height: 40px;
        padding: 1.5% 1% 1.5% 2%;
    }

    .newedithere {
        gap: 40px;
    }

    .username-icon {
        background-size: 20px;
    }

    .form.loginForm, .form.formOTP {
        width: 465px;
    }

    .topsection {
        padding-top: 12px;
        padding-right: 6.5%;
        padding-left: 6.5%;
    }

    .topsection {
        padding-top: 12px;
        padding-right: 6.5%;
        padding-left: 6.5%;
    }

    .mb-40 {
        margin-bottom: 1.5rem;
    }
    .mt-40 {
        margin-top: 1.5rem;
    }

    .mb-56 {
        margin-bottom: 2.5rem;
    }

    .newflex {
        gap: 130px;
        margin-top: 3rem;
    }


    /*.form .btn, .form a.btn-primary {
        height: 40px;
        line-height: 40px;
    }*/

    .select2-container {
        height: 40px !important;
        padding: 0.6rem 0.5rem 0.6rem 0.5rem !important;
    }
}

@media (max-width: 1400px) {

    .newflex {
        gap: 88px;
    }
}

@media (max-width: 1363px) {
    .newflex {
        gap: 100px;
    }

    .newedithere {
        width: 420px
    }
}

@media (max-width: 1290px) {
    .form.loginForm, .form.formOTP {
        /*width: 100%;*/
    }

    .language {
        padding-right: 3rem
    }

    .intropadding {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}

@media (max-width: 1024px) {
    html, body {
        font-size: 14px
    }
}

@media (max-width: 1000px) {
    html, body {
        font-size: 12px
    }

    .newflex {
        gap: 0.5rem;
    }
}

@media (max-width: 900px) {
    .newflex {
        flex-wrap: wrap;
    }

    .newflex {
        display: inline-flex;
        align-items: center;
        justify-content: space-evenly;
    }
}
/*For Mobile*/
@media (max-width: 768px) {
    html, body {
        font-size: 14px;
        height: 100%
    }

    .newedithere.leftside, .footerbottom {
        display: none
    }

    .form.loginForm, .form.formOTP {
        width: 100%;
    }

    .newflex {
        display: inline-block;
        width: 100%;
    }

    .main-content {
        padding-bottom: 0;
    }

    .form .mb-40 {
        margin-bottom: 2.857142857142857rem;
    }

    .form .mbmob-24 {
        margin-bottom: 1.714285714285714rem;
    }

    .form .card-body .position-relative.mb-40 label {
        font-size: 1rem
    }

    .form.loginForm {
        padding-top: 0 !important;
        padding: 2.285714285714286rem
    }

    .form {
        background: none !important;
        box-shadow: none !important
    }

    .navbar-brand img {
        width: 100px;
        height: 39.019px;
    }

    .topsection {
        padding-top: 2.142857142857143rem;
        padding-right: 2.285714285714286rem;
        padding-left: 2.285714285714286rem;
        margin-bottom: 3.428571428571429rem
    }

    .language {
        padding-right: 0;
        border-radius: 2.285714285714286rem;
        background: var(--White, #FFF);
        box-shadow: 0 16px 36px 0 var(--Box_shadow, rgba(0, 48, 87, 0.04)), 0 -1px 50px -10px var(--Box_shadow, rgba(0, 48, 87, 0.04));
    }

    .languageddl {
        height: 2.142857142857143rem;
        line-height: 2.142857142857143rem;
        height: 30px;
        line-height: 30px;
    }

    .form .card .card-header h4 {
        color: var(--Neutral-Color-Text-colorText, #070707);
        font-style: normal;
        font-size: 2rem;
        font-weight: 400;
        line-height: 2.285714285714286rem;
    }

    .form .card .card-header {
        gap: 4px;
    }

        .form .card .card-header span {
            color: var(--Neutral---300);
            font-size: 1rem;
            font-style: normal;
            font-weight: 400;
            line-height: 1.428571428571429rem;
            letter-spacing: 0.25px;
        }

    .form .btn, .form a.btn-primary, .form .btn-outline-primary {
        height: 3.571428571428571rem;
        font-size: 1.142857142857143rem;
        font-style: normal;
        font-weight: 500;
        /*line-height: 1.285714285714286rem;*/
        letter-spacing: 0.0357142857142857rem;
    }

    .btn-outline-primary {
        color: var(--primary);
        height: 3.5rem
    }

    .mb-56 {
        margin-bottom: 2.857142857142857rem;
    }

    .mobbottom {
        position: fixed;
        bottom: 2.285714285714286rem;
        width: 100%;
        align-items: center;
        right: 2.285714285714286rem;
        left: 2.285714285714286rem;
        width: calc(100% - 64px);
    }

    .form-control {
        height: 4rem;
        padding: 1.5% 1% 1.5% 2%;
    }
    .select2-container {
        height: 4rem !important;
    }
    .mb-24 {
        margin-bottom: 1.714285714285714rem;
    }
    .mobformat, .passwordformat {
        font-size: 0.9285714285714286rem
    }
    .hideonmob
    {
        display:none;
    }
    .showonmob
    {
        display:block
    }
    .SucessMesg
    {
        width:auto
    }
  
}

@media (max-width: 576px) {
    .form {
        position: relative;
        bottom: 50px;
        width: inherit;
    }

    .newflex {
        gap: 4.5rem;
    }
}
@media (max-width: 393px) {
    .form .card-body .position-relative.mb-40 label
    {
        font-size:1rem
    }
   
}