.pe-app-sidebar .pe-app-sidebar-logo {
    height: 70px !important;
}
.app-wrapper {
    background-color: #e7eff7;
    min-height: calc(100vh - (var(--pe-app-header-height))) !important;
}
.table th, .table td {
    padding: .5rem .7rem !important;
}
.view-icon-btn {
    width: 32px;
    height: 32px;
    font-size: 19px !important;
    line-height: 1;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-card {
    border: 1.5px solid #3a6aa5 !important;
}
.modal-backdrop{
    --pe-backdrop-opacity: 0.8 !important;
}

.thumbs-swiper .part-slide-image{
    height: 100px;
}

.thumb-view-swiper .part-slide-image{
    height: 350px;
}
.dropzone{
    border: 1px dashed rgb(177, 177,177,0.8) !important;
}

.upload-logo-container{
    border: 2px dashed #cccccc;
    border-radius: 5px;
    height: 180px;
    width: 100%;
    background-color: #ededed;
    cursor: pointer;
    position: relative;
}
.upload-logo-container .logo-upload-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    height: 200px;
    width: 100%;
}
.upload-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
}
.upload-logo-container input[type="file"] {
    display: none;
}
.upload-logo-container .upload-content {
    pointer-events: none;
    opacity: 0;
}

/* Make sure nav is visible */
.parts-slider .owl-nav {
    display: block !important;
}

/* Position nav over the slider */
.parts-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    background: var(--pe-primary) !important;
    color: #fff !important;
    font-size: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.parts-slider .item-image{
    width: 150px;
    height: 150px;
    overflow: hidden;
}
.parts-slider .item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Left button */
.parts-slider .owl-nav .owl-prev {
    left: 10px;
}

/* Right button */
.parts-slider .owl-nav .owl-next {
    right: 10px;
}

/* Hover effect */
.parts-slider .owl-nav button:hover {
    background: rgba(0,0,0,0.85) !important;
}

/* Remove default span styles */
.parts-slider .owl-nav button span {
    line-height: 0.8em;
    font-size: 30px;
}
#imagePreviewModal .preview-image{
    width: 100%;
    height: 800px;
    overflow: hidden;
}
#imagePreviewModal .preview-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*Custom Radio*/
.custom-radio {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #c9d0da;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    outline: none;
}

.custom-radio:hover {
    border-color: var(--pe-primary);
    outline: none;
    box-shadow: none !important;
}

.custom-radio:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 12px;
    width: 23px;
    height: 22px;
    transform: translate(-50%, -50%);
    background-image: url("../images/primary-chcek.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.custom-radio:checked {
    border-color: var(--pe-primary);
    background-color: #fff;
    outline: none;
    box-shadow: none !important;
}

.custom-radio-label {
    margin-left: 5px;
    font-size: 15px;
    margin-top: 3px;
}

.form-check-input:focus {
    box-shadow: none;
    outline: none !important;
}

.form-check-input[type=checkbox] {
    border-radius: 50%;
}

.form-check-input:checked[type=checkbox] {
    border-color: var(--pe-primary);
    border-radius: 50%;
}
/*Custom Radio*/