.slide-control {
    padding: 4px 18px 4px 12px;
}

.pointer-control {
    padding: 4px 18px 4px 12px;
}

.flex {
    display: flex;
}

.direction-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.gap1 {
    gap: 1px;
}

.gap4 {
    gap: 4px;
}

.items-center {
    align-items: center !important;
}

.items-center-text {
    align-items: center !important;
    margin-top: -1px;
    padding-bottom: 5px;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.min-h-full {
    min-height: 100% !important;
}

.leading-none {
    line-height: 0 !important;
}

.bg-transparent {
    background-color: transparent;
}

.items-content {
    align-items: center;
    margin-bottom: 6px;
}

#lbShapeCompound, #lbShapeDash {
    display: flex;
    align-items: center;
    justify-content: end;
}

#mgl-7 {
    margin-left: 7px;
}

.sdpi-item-value-short {
    min-width: auto !important;
}

.sdpi-wrapper-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

#spin-loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid gray;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* new feature start */
/*----------------------Add an img into Option Use Select2--------------------------*/

.select2-container--default .select2-selection--single {
    height: 26px !important;
    display: flex !important;
    align-items: center;
    width: 227px;
    margin-left: 5px;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 109px !important;
    overflow-x: hidden;
    overflow-y: scroll !important;
    background-color: var(--sdpi-background);
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 5px;
    outline: 1px solid #708090;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	margin: 0px;
	border-radius: 8px;
} 
.select2-search {
    display: none !important;
}

.select2-dropdown--above {
    width: 227px !important;
    background-color: var(--sdpi-background) !important;
}

.select2-dropdown {
    margin-left: 5px;
}

.select2-selection--single {
    background-color: var(--sdpi-background) !important;
   
}

.select2-selection--single .select-item-text {
    background-color: var(--sdpi-background) !important;
    font-size: 10pt;
    font-weight: var(--sdpi-fontweight);
    letter-spacing: var(--sdpi-letterspacing);
    color: var(--sdpi-color) !important;
    white-space-collapse: collapse;
    text-wrap: nowrap;
    min-height: 1.2em;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: -14px !important;
    position: static !important;
}

.select2-container--open .select2-dropdown--below {
    width: 227px !important;
}

.select2-results__option {
    background-color: var(--sdpi-background) !important;
    font-size: 10pt;
    font-weight: var(--sdpi-fontweight);
    letter-spacing: var(--sdpi-letterspacing);
    color: var(--sdpi-color);
    white-space-collapse: collapse;
    text-wrap: nowrap;
    min-height: 1.2em;
}
.select2-results__option:hover {
    background-color: #0078FFFF !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #0078FFFF !important;
    color: #ffffff !important;
}

.select2-container--default .select2-selection--single {
    border: none !important;
    border-radius: 0 !important;
}

.select2-results__options {
    border: 1px solid var(--sdpi-buttonbordercolor) !important;
    box-shadow: 3px 1px 0.5px #0000002d !important;
}

.select2-dropdown {
    border: none !important;
    border-radius: 0 !important;
}

.select2-results__option .customs-option {
    display: flex;
    align-items: center;
    height: 10px;
    width: 196px;
}

.select2-results__option .customs-option img, .select2-selection__rendered .customs-selected img {
    width: 20px;
    height: 20px;
}

.select2-selection__rendered .customs-selected {
    display: flex;
    align-items: center;
    height: 20px;
    width: 196px;
}

.select2-results__option .customs-option .select-item-text, .select2-selection__rendered .customs-selected .select-item-text {
    margin-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow .arrow-icon {
    background: url(../../libs/assets/caret.svg) no-repeat 0% center;
    height: 26px !important;
    width: 20px !important;
    display: block !important;
    -webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
}
/* new feature end */