<style>
* {
    scroll-behavior: smooth;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently*/
    scrollbar-width: thin;
    scrollbar-color: #72727257 transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0px solid transparent;
    -webkit-text-fill-color: #1E202C;
    -webkit-box-shadow: 0 0 0px 0px transparent inset;
    transition: background-color 300s ease-in-out 0s;
}

@viewport {
    orientation: portrait;
}

body,
#root,
html {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
#root > div {
    height: 100%;
}

input {
    outline: none;
}

::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #72727257;
    border-radius: 2px;
}

.rc-slider-handle:active {
    box-shadow: unset !important;
}

.rc-slider-disabled {
    background-color: transparent !important;
}

.uploadImg .fileContainer {
    margin: 0;
    background-color: transparent;
    z-index: 19;
    height: 100%;
}

.uploadImg {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    height: 100%;
}

[data-item="primaryBG"]:hover *{
    color: #DE1F41!important;
}
[data-item="primaryBG"]:hover svg path {
    fill: #DE1F41!important;
}

[data-item="primaryBG"] {
    -webkit-transition: color 500ms ease;
    -moz-transition: color 500ms ease;
    -ms-transition: color 500ms ease;
    -o-transition: color 500ms ease;
    transition: color 500ms ease;
}

[data-item="boxBefore"]::before {
    content: '';
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    -webkit-transition: width 500ms ease;
    -moz-transition: width 500ms ease;
    -ms-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
    background-color: #de1f4161;
    cursor: pointer;
}

[data-item="boxBefore"]:hover::before {
    width: 100%;
}

[data-item="parentBoxBefore"]:hover [data-item="boxBefore"]::before {
    width: 100%;
}

[data-item="boxScale"] {
    -webkit-transition: transform 500ms ease;
    -moz-transition: transform 500ms ease;
    -ms-transition: transform 500ms ease;
    -o-transition: transform 500ms ease;
    transition: transform 500ms ease;
}

[data-item="boxScale"]:hover {
    transform: scale(1.025);
}
[data-item="listPadding"] {
    padding: 0 15px;
}
[data-item="listPaddingRight"] {
    padding-right: 15px;
}

.webFont{
    font-family: 'roboto';
}