#dcm_forms_popup {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-content-bg);
    background: rgba(255,255,255,.96);
    filter: blur(250px);
    opacity: 0;
    border-radius: 50%;
    z-index: -100;
}

#dcm_forms_popup._visible {
    filter: blur(0);
    opacity: 1;
    border-radius: 0;
    z-index: 10000;
}

#dcm_forms_popup > ._close {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    background: transparent;
    border: solid 1px var(--color-content-heading);
    color: var(--color-content-heading);
}


#dcm_forms_popup > ._close > i {
    -webkit-transition: all 500ms ease-in-out !important;
    -moz-transition: all 500ms ease-in-out !important;
    -o-transition: all 500ms ease-in-out !important;
    transition: all 500ms ease-in-out !important;
}

#dcm_forms_popup > ._close:hover {
    background: var(--color-content-primary);
    border: solid 1px var(--color-content-link);
}

#dcm_forms_popup > ._close:hover > i {
    transform: rotate(360deg);
}

#dcm_forms_popup > ._content {
    display: block;
    position: relative;
    width: calc(100% - 80px);
    max-width: 720px;
    height: calc(100% - 110px);
    margin: 70px auto 40px auto;
}

#dcm_forms_popup > ._content > .dcmf_progress {
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 16px;
    transform: translate(0,-100%);
    background: var(--color-content-heading);
}

#dcm_forms_popup > ._content > .dcmf_progress > ._bar {
    -webkit-transition: all 500ms ease-in-out !important;
    -moz-transition: all 500ms ease-in-out !important;
    -o-transition: all 500ms ease-in-out !important;
    transition: all 500ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-content-primary);
}

#dcm_forms_popup > ._content > .dcmf_progress > ._counter {
    display: block;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translate(0,-50%);
    font-size: 11px;
    color: var(--color-content-bg);
    text-shadow: 0px 1px 1px var(--color-content-text);
}

#dcm_forms_popup > ._content > .dcmf_form {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 24px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps {
    display: block;
    position: relative;
    width: 100%;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top center;
    transform: translate(0,0) scale(0) rotate(0deg);
    opacity: 0;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step._active {
    position: relative;
    top: unset;
    left: 0;
    transform: translate(0,0) scale(1) rotate(0deg);
    opacity: 1;
    border-radius: 0;
    filter: blur(0);
    z-index: 2;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._heading {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._heading > h2 {
    display: block;
    position: relative;
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._heading > h2 > span {
    display: inline-block;
    position: relative;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._heading > h2 > span::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-content-primary);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._heading > h2 > span > strong {
    color: var(--color-content-faded);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row {
    display: flex;
    position: relative;
    width: 100%;
    align-items: start;
    gap: 20px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row:not(:last-child) {
    margin-bottom: 20px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field {
    flex: 1;
    position: relative;
    padding: 2px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > label {
    display: block;
    position: relative;
    width: 100%;
    font-weight: 600;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > small {
    display: block;
    position: relative;
    width: 100%;
    color: var(--color-content-faded);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > label > i,
#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > small > i {
    color: var(--color-content-link);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field._left {
    text-align: left;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field._right {
    text-align: right;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field._center {
    text-align: center;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > button {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--color-content-heading);
    color: var(--color-content-primary);
    border: solid 1px var(--color-content-primary);
    padding: 8px 16px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > button:hover {
    color: var(--color-content-heading);
    background: var(--color-content-primary);
}

/* Input file */
#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file {
    display: block;
    position: relative;
    width: 100%;
    border: solid 1px var(--color-alt-content-border);
    border-radius: 0;
    background: var(--color-alt-content-bg-grad);
    padding: 5px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui {
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    gap: 15px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > div {
    flex: auto;
    position: relative;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview {
    min-width: 180px;
    max-width: 180px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-alt-content-border);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img:hover {
    background: var(--color-content-heading);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img > i {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 36px;
    color: rgba(0,0,0,.2);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img:hover > i {
    color: var(--color-content-primary);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img > img {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img:hover > img {
    opacity: .75;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._loader {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: 0;
    z-index: -10;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._loader._visible {
    opacity: 1;
    z-index: 2;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._loader > ._progress {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-content-primary);
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._action {
    
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._action > button {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: inline-block;
    position: relative;
    width: 100%;
    border: solid 1px var(--color-content-faded);
    color: var(--color-content-faded);
    background: transparent;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    padding: 6px 12px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._action > button:hover {
    border: solid 1px var(--color-content-heading);
    color: var(--color-content-heading);
    background: var(--color-content-primary);
}

/* Loader */
#dcm_forms_popup > ._content > .dcmf_form > ._loader {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%,-50%) scale(1);
    background: var(--color-content-bg);
    background: rgba(255,255,255,.95);
    opacity: 0;
    z-index: -10;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader._visible {
    transform: translate(-50%,-50%) scale(1);
    filter: blur(0);
    opacity: 1;
    z-index: 10;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._loading {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
    z-index: -10;
    opacity: 0;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._loading._visible {
    z-index: 2;
    opacity: 1;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._loading > .loader {
    width: 100px;
    aspect-ratio: 1;
    --g1:conic-gradient(from  90deg at top    3px left  3px,#0000 90deg,var(--color-content-primary) 0);
    --g2:conic-gradient(from -90deg at bottom 3px right 3px,#0000 90deg,var(--color-content-primary) 0);
    background:
      var(--g1),var(--g1),var(--g1),var(--g1), 
      var(--g2),var(--g2),var(--g2),var(--g2);
    background-position: 0 0,100% 0,100% 100%,0 100%;
    background-size: 50px 50px;
    background-repeat: no-repeat;
    animation: l11 1.5s infinite;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._loading > ._label {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%,100%);
    width: 220px;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-content-faded);
    animation: dcm_loading_txt 2s infinite;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 40px);
    max-width: 480px;
    opacity: 0;
    z-index: -10;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice._visible {
    opacity: 1;
    z-index: 2;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._icon {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._icon > i {
    font-size: 32px;
    color: var(--color-content-faded);
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._icon > .fa-exclamation-triangle {
    color: rgb(215,0,0);
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._icon > .fa-check-circle {
    color: #03b961;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._message {
    display: block;
    position: relative;
    width: 100%;
    background: var(--color-content-bg);
    border: solid 1px var(--color-content-primary);
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._action {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 12px;
    text-align: center;
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._action > button {
    -webkit-transition: all 250ms ease-in-out !important;
    -moz-transition: all 250ms ease-in-out !important;
    -o-transition: all 250ms ease-in-out !important;
    transition: all 250ms ease-in-out !important;
    display: inline-block;
    position: relative;
    padding: 4px 12px;
    border: solid 1px var(--color-content-heading);
    color: var(--color-content-heading);
    background: var(--color-content-bg);
    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
    
}

#dcm_forms_popup > ._content > .dcmf_form > ._loader > ._notice > ._action > button:hover {
    background: var(--color-content-primary);
    border: solid 1px var(--color-content-link);
}

/* Media Queries */

@media (max-width: 767px) {
    
    #dcm_forms_popup > ._close {
        right: 50%;
        transform: translate(50%,0);
    }
    
}

@media (max-width: 599px) {
    
    #dcm_forms_popup > ._content {
        width: calc(100% - 50px);
        height: calc(100% - 90px);
        margin: 65px auto 25px auto;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._heading > h2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row:not(._nav) {
        display: block;
        align-items: unset;
        gap: unset;
    }

    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field:not(._nav) {
        flex: unset;
        display: block;
        position: relative;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field:not(._nav):not(:last-child) {
        margin-bottom: 20px;
    }
    
}

@media (max-width: 559px) {
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui {
        display: block;
        align-items: unset;
        gap: unset;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > div {
        flex: unset;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > div:last-child {
        margin-top: 8px;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview {
        min-width: unset;
        max-width: unset;
    }
    
    #dcm_forms_popup > ._content > .dcmf_form > ._form > ._steps > ._step > ._row > ._field > ._upload_file > ._ui > ._preview > ._img {
        display: inline-block;
        width: 180px;
    }
    
}

/* Animations */
@keyframes l11 {
    0%   {background-size:65px 30px,30px 30px,30px 65px,65px 65px}
    25%  {background-size:65px 65px,30px 65px,30px 30px,65px 30px}
    50%  {background-size:30px 65px,65px 65px,65px 30px,30px 30px}
    75%  {background-size:30px 30px,65px 30px,65px 65px,30px 65px}
    100% {background-size:65px 30px,30px 30px,30px 65px,65px 65px}
}

@keyframes dcm_loading_txt {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    15% {
        opacity: 0.5;
        filter: blur(2px);
    }
    30% {
        opacity: 1;
        filter: blur(0);
    }
    70% {
        opacity: 1;
        filter: blur(0);
    }
    85% {
        opacity: 0.5;
        filter: blur(2px);
    }
    100% {
        opacity: 0;
        filter: blur(5px);
    }
}