﻿@import url(../font/VazirFaNum/css/vazir.css);
@import url(../font/VazirEnNum/css/vazir.css);

:root {
    --default: #767676;
    --accent: var(--warning);
    --disable: var(--hint);
    --success: #00c9ae;
    --danger: #FF656D;
    --pink: #fc4298;
    --purple: #c642fc;
    --info: #1DA1F2;
    --warning: #FCB242;
    --warning-light: #feeccf;
    --textLight: #CAC9C9;
    --textDark: #737373;
    --hint: #CAC9C9;
    --light: #fff;
    --backColor: #F0F0F0;
    --bgColor: #f7f7f7;
    --shadowColor: #cac9c98c;
    --lightBlue: #42fceb;
    --grdAccent: linear-gradient(45deg, var(--warning), var(--danger));
    --grdInfo: linear-gradient(45deg, var(--info), var(--purple));
    --grdSuccess: linear-gradient(45deg, var(--lightBlue), var(--success));
    --grdDanger: linear-gradient(45deg, var(--danger), var(--pink));
    --grdDefault: linear-gradient(45deg, var(--default), var(--textDark));
    --grdPink: linear-gradient(45deg, var(--pink), var(--purple));
    --grdLightBlue: linear-gradient(45deg, var(--purple), var(--lightBlue));
    --faFont: VazirFaNum;
    --enFont: VazirEnNum;
    --transition: all ease-in-out 0.3s;
    --radius: 6px;
}

.parsley-errors-list {
    list-style: none;
    margin: 6px 0;
    padding: 0 16px;
    color: var(--danger);
    font-size: 85%;
}

.form-control.parsley-error {
    border-color: #ff0000;
}

* {
    font-family: var(--faFont);
    outline: none;
    margin: 0;
    padding: 0;
}

.label {
    display: block;
    width: 100%;
    color: var(--textDark);
    margin-bottom: 8px;
    font-size: 13pt;
    padding-right: 8px;
    box-sizing: border-box;
}


/* #region Input And Area */

.input,
.textarea {
    width: 100%;
    display: flex;
    border-radius: 25px;
    border: 0;
    background-color: var(--backColor);
    padding: 8px 15px;
    box-sizing: border-box;
    font-size: 12pt;
    height: 41px;
    align-items: center;
}

.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask {
    border-radius: 25px !important;
}

.tinymce-mobile-icon-back:before {
    content: "" !important;
    -webkit-mask: url(/icons/controls/close.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    background-color: var(--light);
    width: 16px;
    height: 16px;
}

.tinymce-mobile-toolbar-group span:nth-child(3) {
    display: none !important;
}

.input.small {
    font-size: 10pt;
    padding: 10px 16px;
}

.textarea {
    resize: vertical;
    min-height: 150px;
    padding: 16px;
}

.input::placeholder {
    color: #cac9c9;
}

.iconBox {
    position: relative;
    display: block;
}

    .iconBox > .input {
        padding-right: 40px;
    }

    .iconBox.left > .input {
        padding-left: 40px;
        padding-right: 15px !important;
        direction: ltr;
        text-align: left;
    }

    .iconBox > i {
        -webkit-mask-size: 24px;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background: var(--grdDanger);
        width: 24px;
        display: block;
        height: 30px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 12px;
    }

    .iconBox.left > i {
        left: 12px;
        right: unset !important;
    }


/* #endregion Input And Area */


/* #region File Uploader */

label.inputFile .imageprev {
    display: block;
    box-shadow: 0px 4px 13px -6px var(--shadowColor);
    opacity: 0;
    width: 100%;
    position: absolute;
    bottom: 54px;
    background: var(--backColor);
    left: 0;
    z-index: -1;
    border-radius: 25px;
    overflow: hidden;
    padding: 16px;
}

label.inputFile img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-height: 128px;
}

label.inputFile .close {
    right: 16px;
    border: none;
    cursor: pointer;
    content: "";
    -webkit-mask-size: 24px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(../icons/controls/CloseSquare.svg);
    background: var(--grdDanger);
    width: 24px;
    display: block;
    height: 24px;
    position: absolute;
    top: 16px;
}

label.inputFile {
    width: 100%;
    display: block;
    border-radius: 25px;
    border: 0;
    background-color: var(--backColor);
    font-size: 12pt;
    padding: 8px 15px;
    box-sizing: border-box;
    color: var(--textLight);
    position: relative;
}

    label.inputFile::after {
        content: "";
        cursor: pointer;
        -webkit-mask-size: 24px;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-image: url("../icons/controls/Upload.svg");
        background: var(--grdDanger);
        width: 24px;
        display: block;
        height: 30px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        left: 12px;
    }

    label.inputFile i {
        position: absolute;
        top: 50%;
        font-size: 12pt;
        color: var(--pink);
        transform: translate(0, -50%);
        left: 15px;
    }

    label.inputFile > input[type="file"] {
        display: none;
    }

    label.inputFile span {
        text-overflow: ellipsis;
        cursor: pointer;
        overflow: hidden;
        max-width: 50%;
        white-space: nowrap;
        display: block;
    }

    label.inputFile .preview {
        left: 46px;
        border: none;
        cursor: pointer;
        content: "";
        -webkit-mask-size: 30px;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-image: url(../icons/controls/Show.svg);
        background: var(--grdDanger);
        width: 30px;
        display: block;
        height: 30px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }

    label.inputFile .close {
        right: 16px;
        border: none;
        cursor: pointer;
        content: "";
        -webkit-mask-size: 24px;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-image: url(../icons/controls/CloseSquare.svg);
        background: var(--grdDanger);
        width: 24px;
        display: block;
        height: 24px;
        position: absolute;
        top: 16px;
    }

    label.inputFile .imageprev {
        display: block;
        box-shadow: 0px 4px 13px -6px var(--shadowColor);
        opacity: 0;
        width: 100%;
        position: absolute;
        bottom: 54px;
        background: var(--backColor);
        left: 0;
        z-index: -1;
        border-radius: 25px;
        overflow: hidden;
        padding: 16px;
    }

        label.inputFile .imageprev.open {
            opacity: 1;
            z-index: 1
        }

    label.inputFile img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-height: 128px;
    }


/* #endregion File Uploader*/

label.inputAdd {
    width: 100%;
    cursor: pointer;
    display: block;
    border-radius: 25px;
    border: 0;
    background-color: var(--backColor);
    font-size: 12pt;
    padding: 8px 15px;
    box-sizing: border-box;
    color: var(--textDark);
    position: relative;
}

    label.inputAdd::after {
        content: "";
        -webkit-mask-size: 18px;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-image: url("../icons/controls/Add.svg");
        background: var(--grdDanger);
        width: 18px;
        display: block;
        height: 18px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        left: 12px;
    }

    label.inputAdd i {
        position: absolute;
        top: 50%;
        font-size: 12pt;
        color: var(--pink);
        transform: translate(0, -50%);
        left: 15px;
    }

    label.inputAdd > input {
        display: none;
    }


/* #region Buttons */

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    float: left;
    background-color: var(--disable);
    padding: 8px 16px;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    box-shadow: 0px 4px 12px -3px rgb(0 0 0 / 22%);
    font-size: 12pt;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 0;
    text-decoration: none;
    margin: 0 2px;
}

    .btn.sm {
        padding: 6px 16px !important;
        font-size: 10pt;
    }

    .btn.outline {
        background: transparent;
        border: 1px solid var(--textDark);
        box-shadow: none;
        color: var(--textDark);
    }

    .btn.right:not(.small) i {
        margin: 0 0 0 10px
    }

    .btn:not(.small) i {
        margin: 0 10px 0 0;
    }

    .btn.icon {
        padding: 7px 14px 6px 38px;
        position: relative;
    }

        .btn.icon.right {
            padding: 7px 38px 6px 14px !important;
        }

        .btn.icon:before {
            content: "";
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-size: 20px;
            -webkit-mask-position: center;
            background: var(--light);
            width: 18px;
            height: 18px;
            display: block;
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
            left: 12px;
        }

        .btn.icon.right:before {
            left: unset;
            right: 12px;
        }

    .btn.small {
        padding: 16px;
        border-radius: 50%;
        margin: 0 8px;
        width: 24px;
        height: 24px;
        min-height: unset;
    }

    .btn.icon.small:before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 22px;
        height: 22px;
        -webkit-mask-size: 18px;
    }

    .btn.disabled {
        background-color: var(--disable);
        box-shadow: unset;
        color: var(--bgColor);
    }

    .btn.radius {
        border-radius: 25px;
    }

    .btn.danger {
        background-color: var(--danger);
    }

    .btn.info {
        background-color: var(--info);
    }

    .btn.warning {
        background-color: var(--warning);
    }

    .btn.success {
        background-color: var(--success);
    }

    .btn.grdDanger {
        background: var(--grdDanger);
    }

    .btn.grdInfo {
        background: var(--grdInfo);
    }

    .btn.grdSuccess {
        background: var(--grdSuccess);
    }

    .btn.grdWarning {
        background: var(--grdPink);
    }

    .btn.btn-clear-query {
        box-shadow: none;
        position: absolute;
        left: 0;
        margin: 0;
        top: 50%;
        transform: translateY(-50%);
    }

/* #region Ripple Efect for Buttons */

.ink {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.animate {
    -webkit-animation: ripple 0.5s linear;
    -moz-animation: ripple 0.5s linear;
    -ms-animation: ripple 0.5s linear;
    -o-animation: ripple 0.5s linear;
    animation: ripple 0.5s linear;
}

@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
    }
}

@-moz-keyframes ripple {
    100% {
        opacity: 0;
        -moz-transform: scale(2.5);
    }
}

@-o-keyframes ripple {
    100% {
        opacity: 0;
        -o-transform: scale(2.5);
    }
}

@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}


/* #endregion Ripple Efect for Buttons */


/* #endregion Buttons */


/* #region Icons Address */

.icoUpload:not(.icon),
.icoUpload:before {
    -webkit-mask-image: url("../icons/controls/Upload.svg");
}


.icoVarity:not(.icon),
.icoVarity:before {
    -webkit-mask-image: url("../icons/Category.svg");
}


.icoPerson:not(.icon),
.icoPerson:before {
    -webkit-mask-image: url("../icons/controls/Profile.svg");
}

.icoDelete:not(.icon),
.icoEdit:before {
    -webkit-mask-image: url("../icons/controls/Edit.svg");
}

.icoDelete:not(.icon),
.icoDelete:before {
    -webkit-mask-image: url("../icons/controls/Delete.svg");
}

.icoPassword:not(.icon),
.icoPassword:before {
    -webkit-mask-image: url("../icons/controls/Password.svg");
}

.icoEdit:not(.icon),
.icoEdit:before {
    -webkit-mask-image: url("../icons/controls/Edit.svg");
}

.icoAdd:not(.icon),
.icoAdd:before {
    -webkit-mask-image: url("../icons/controls/Add.svg");
}


.icoRemove:not(.icon),
.icoRemove:before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
    -webkit-mask-image: url("../icons/controls/Add.svg");
}


/* #endregion Icons Address */


/* #region Radio Button */

.radioBox {
    display: inline-block;
    height: 40px;
    align-items: center;
}

    .radioBox > p {
        color: red;
    }

.radio input {
    display: none;
}

    .radio input:checked ~ label.radioFake:after {
        content: "";
        width: 14px;
        height: 14px;
    }

    .radio input ~ label.radioFake:after {
        content: "";
        position: absolute;
        width: 0px;
        height: 0px;
        background-color: white;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        transform: scale(1) translate(-50%, -50%);
        transition: all 0.3s ease-in-out;
    }

.radio {
    display: inline-flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    color: var(--textDark);
    font-size: 10pt;
    margin-left: 10px;
}

    .radio label.radioFake {
        width: 22px;
        height: 22px;
        border: 0;
        border-radius: 50%;
        display: inline-block;
        margin: 5px;
        transition: var(--transition);
        background: var(--grdAccent);
        position: relative;
        cursor: pointer;
    }

    .radio label.radioLabel {
        color: var(--textDark);
        font-size: 11pt;
        user-select: none;
        cursor: pointer;
    }


/* #endregion radio button*/


/* #region Switch */

.switchBox {
    display: flex;
    height: 40px;
    align-items: center;
    margin: 0 8px;
}

    .switchBox .switch {
        position: relative;
        display: inline-block;
        width: 36px;
        height: 14px;
    }

        .switchBox .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .switchBox > p {
        margin-right: 10px;
        font-size: 11pt;
    }

    .switchBox .switch .slider {
        position: absolute;
        cursor: pointer;
        overflow: visible;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--warning-light);
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

        .switchBox .switch .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: -2px;
            top: 50%;
            bottom: 4px;
            background: var(--grdAccent);
            -webkit-transition: 0.4s;
            transform: translate(0, -50%);
            transition: 0.4s;
        }

    .switchBox .switch input:checked + .slider:before {
        transform: translate(calc(100% + 1px), -50%)
    }

    .switchBox .switch .slider.round {
        border-radius: 34px;
    }

        .switchBox .switch .slider.round:before {
            border-radius: 50%;
        }


/* #endregion Switch*/


/* #region CheckBox */

.checkbox input ~ label.checkBoxFake:after {
    content: "";
    position: absolute;
    -webkit-mask-image: url(../icons/controls/mark.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 14px;
    background: var(--light);
    width: 22px;
    height: 22px;
    -webkit-mask-position: center;
    z-index: 99999;
    transition: var(--transition);
    transform: scale(0);
    cursor: pointer;
}

.checkbox input:checked ~ label.checkBoxFake:after {
    transform: scale(1);
}

.checkbox input ~ label.checkBoxFake {
    background-image: var(--grdAccent);
    position: relative;
}

.checkbox {
    display: inline-flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    color: var(--textDark);
    font-size: 11pt;
    cursor: pointer;
    margin-left: 10px;
}

    .checkbox label.checkBoxFake {
        width: 22px;
        height: 22px;
        border-radius: 8px;
        display: inline-block;
        margin: 5px;
        transition: var(--transition);
        cursor: pointer;
    }

.checkBoxContainer {
    display: inline-block;
    height: 40px;
    align-items: center;
}

.checkbox input {
    display: none;
}

.checkbox label:not(.checkBoxFake) {
    user-select: none;
    font-size: 11pt;
    cursor: pointer;
}


/* #endregion CheckBox*/


/* #region Ripple Effect for CheckBox And Radio */

.checkbox input:checked ~ label.checkBoxFake:before,
.radio input:checked ~ label.radioFake:before {
    animation: click-wave 0.65s;
    background: var(--grdAccent);
    content: "";
    display: block;
    position: absolute;
    z-index: 100;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    margin: 0;
}

.checkbox input:checked ~ label.checkBoxFake:before {
    border-radius: 16px;
}

@-webkit-keyframes click-wave {
    0% {
        width: 22px;
        height: 22px;
        opacity: 0.35;
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}


/*#endregion Ripple Effect for CheckBox And Radio */


/* #region Select2 */

.select2-container.select2 {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    width: 100%;
    display: flex;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 12pt;
    height: 41px;
    color: var(--textDark);
    background: var(--backColor);
    border-radius: 25px !important;
    box-sizing: border-box;
}

.select2-container--default .select2-selection--single {
    border: none;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        left: 12px !important;
        top: 50% !important;
        transform: translate(0, -50%);
    }

.select2-dropdown {
    overflow: hidden !important;
    top: 11px;
    background-color: var(--backColor);
    border-radius: 15px !important;
    border: 0;
    box-shadow: 0 6px 16px #0000002b;
    padding: 0px 0 8px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #0000;
    color: var(--warning);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: transparent;
}

.select2-selection__arrow icon:before {
    transition: all 0.2s ease-in-out;
}

.select2-container--open icon:before {
    transform: rotate(180deg);
}

.select2-results__option {
    color: var(--textDark);
    font-size: 10.5pt;
    padding: 4px 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 0 !important;
    background-color: var(--bgColor);
    border-radius: 25px;
    margin: 5px;
    padding: 6px 10px;
    width: calc(100% - 10px);
}

i.icon {
    display: flex;
    width: 20px;
    height: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    background: #0000;
}

    i.icon:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        background: var(--grdAccent);
        top: 0;
        mask: url(../icons/controls/Arrow.svg);
        -webkit-mask: url(../icons/controls/Arrow.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        transition: all 0.3s ease-in-out;
    }

.select2-container--open i.icon:before {
    transform: rotate(180deg);
}


/*#endregion Select2*/


/*#region Chips*/

.chips {
    border-radius: 25px !important;
    background-color: var(--backColor) !important;
    font-size: 12pt;
}

    .chips .items .item {
        color: var(--light) !important;
        border-radius: 25px !important;
        background: var(--info) !important;
    }

        .chips .items .item:is(.hover, .active) {
            background: var(--accent) !important;
        }


/*#endregion*/


/*#region Table*/

.table {
    display: block;
}

    .table .tools {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

        .table .tools .items .icoAdd {
            margin: 0
        }

    .table .title {
        font-size: 20px;
        padding: 8px;
        font-weight: 600;
    }

    .table .thead,
    .table .tbody {
        display: block;
        border-bottom: 1px solid var(--backColor);
    }

    .table .tr {
        display: grid;
    }

    .table .tbody .tr:not(:last-child) {
        border-bottom: 1px solid var(--backColor);
    }

    .table .th,
    .table .td {
        display: block;
        padding: 10px 16px;
        font-size: 12pt;
        position: relative;
        font-weight: 600;
    }

        .table .td.center {
            justify-content: center;
        }

    .table .td {
        display: flex;
        align-items: center;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--default);
        font-size: 14px;
    }

        .table .td.media img {
            border-radius: 25px;
            width: 36px;
            height: 36px;
            object-fit: cover;
            margin-left: 10px;
        }

.tfoot {
    margin-top: 16px;
    justify-content: space-between;
}

    .tfoot,
    .tfoot .pagination {
        display: flex;
        align-items: center;
    }

        .tfoot .pagination .item {
            width: 24px;
            line-height: 1;
            height: 24px;
            margin: 0 4px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 25px;
            text-decoration: none;
            transition: var(--transition);
            background-color: var(--backColor);
            color: var(--textDark);
        }

            .tfoot .pagination .item.active {
                background: var(--grdAccent);
                color: var(--light);
                transform: scale(1.1);
            }

            .tfoot .pagination .item:hover {
                transform: scale(1.1);
            }

        .tfoot .pagination i {
            background: var(--grdAccent);
        }

        .tfoot .info {
            display: block;
            font-size: 14px;
        }

        .tfoot .pagination .item:not(.index).disabled {
            opacity: 0.4;
        }

        .tfoot .pagination .index:not(.active, .display) {
            display: none;
        }

@media screen and (min-width: 0) and (max-width: 600px) {
    .table:not(.empty) {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

        .table:not(.empty) .tools,
        .table:not(.empty) .tfoot,
        .table:not(.empty) .tr {
            display: block;
            background-color: var(--light);
            box-shadow: 0px 4px 13px -6px var(--shadowColor);
            padding: 16px;
            border-radius: var(--radius);
        }

        .table:not(.empty) .title {
            text-align: center;
            margin-bottom: 16px;
        }

        .table:not(.empty) .items > .container {
            display: flex;
            align-items: center;
        }

        .table:not(.empty) .items .search {
            width: 100%
        }

    .table .thead {
        display: none;
    }

    .table .tr {
        margin-bottom: 16px;
    }

    .table .td[lable] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: start !important;
        width: 100%;
        padding-right: 40%;
        padding-left: 0;
    }

        .table .td[lable]::before {
            content: attr(lable);
            position: absolute;
            right: 0;
            font-size: 10px;
        }

    .tfoot,
    .tfoot .pagination {
        justify-content: center;
    }

        .tfoot .info {
            text-align: center;
            margin-top: 16px
        }
}

.table.empty {
    position: relative;
}

    .table.empty .tbody,
    .table.empty .thead,
    .table.empty .tfoot,
    .table.empty:not(.filtered) .search {
        display: none;
        border: 0;
    }

    .table.empty::after {
        display: flex;
        margin: 0 auto 36px;
        justify-content: center;
        align-items: flex-end;
        font-size: 16px;
        content: 'موردی برای نمایش وجود ندارد';
        width: 256px;
        height: 256px;
        background: url(../images/empty.svg) no-repeat center;
        background-size: contain;
    }


/*#endregion Table*/


/*#region Form*/

form {
    width: 100%;
    display: flow-root;
}

    form .column {
        margin-bottom: 16px;
    }

        form .column.select2 {
            position: relative
        }

            form .column.select2 .parsley-errors-list {
                position: absolute;
                bottom: -30px
            }


/*#endregion Form*/

    input[type="color"]::-webkit-color-swatch-wrapper {
        padding: 0;
        border-radius: 25px;
    }

    input[type="color"]::-webkit-color-swatch {
        border: none;
        border-radius:25px;
    }
.onlyGetNumber {
    text-align:left;
    direction:ltr;
}