@import url(/css/controls/dynamicText.css);
@import url(/css/controls/uidSelect.css);
@import url(/css/controls/analyze.css);

.controls_field_name {
    position     : relative;
    font-weight  : bold;
    color        : #909090;
    font-size    : 11px;
    margin-bottom: 5px;
}

.controls_expander {
    position     : relative;
    width        : calc(100% - 2px);
    border       : 1px solid #909090;
    margin-bottom: 20px;
    overflow     : hidden;
    border-radius: 10px;
    transition   : ease 0.3s;
}

.controls_expander .controls_expander_content {
    display: none;
}

.controls_expander[expanded="true"] .controls_expander_content {
    display: block;
}

.controls_expander[expanded="true"] {
    border-color: #3D7FFF;
}

.controls_expander[expanded="true"] .controls_expander_header {
    background-color: #3D7FFF;
}


.controls_expander_header {
    position        : relative;
    padding         : 10px;
    min-width       : calc(100% - 20px);
    background-color: #909090;
    display         : flex;
    align-items     : center;
    transition      : ease 0.3s;
}

.controls_expander_header_left {
    position  : relative;
    width     : calc(100% - 24px);
    max-width : calc(100% - 24px);
    min-height: 100%;
}

.controls_expander_headline {
    position     : relative;
    max-width    : 100%;
    color        : white;
    font-size    : 15px;
    white-space  : nowrap;
    overflow     : hidden;
    text-overflow: ellipsis;
}

.controls_expander_bt {
    position  : relative;
    width     : 14px;
    height    : 14px;
    min-width : 14px;
    min-height: 14px;
    padding   : 0;
    margin    : 0;
    border    : none;
    background: url(/src/icons/expand.svg) center/contain no-repeat;
    transition: ease 0.3s;
}

.controls_expander_end {
    position  : relative;
    min-height: 20px;
    height    : 20px;
    width     : 100%;
}

.controls_container {
    position: relative;
    width   : 100%;
    margin  : 20px 0 20px 0;
}

.controls_headline {
    position     : relative;
    font-size    : 20px;
    color        : #424242;
    margin-bottom: 10px;
}

.controls_subline {
    position     : relative;
    font-size    : 14px;
    color        : #898989;
    margin-bottom: 40px;
}

.controls_expander_field {
    position   : relative;
    font-size  : 12px;
    font-weight: bold;
    color      : #424242;
}

.controls_expander_value {
    position  : relative;
    font-size : 14px;
    color     : #696969;
    padding   : 4px 10px 10px 10px;
    width     : calc(100% - 20px);
    max-width : calc(100% - 20px);
    word-wrap : break-word;
    word-break: break-all;
}

.controls_expander_content {
    position        : relative;
    width           : calc(100 - 40px);
    min-width       : calc(100 - 40px);
    padding         : 10px 20px 0px 20px;
    background-color: white;
}

.crtl_layout_warpper {
    position : relative;
    min-width: 280px;
    width    : 1024px;
    padding  : 20px 0 20px 0;
    margin   : 0 auto;
}

.crtl_form_headtag {
    position               : relative;
    padding                : 10px;
    width                  : calc(100% - 20px);
    min-width              : calc(100% - 20px);
    background             : linear-gradient(120deg, #3D7FFF, transparent);
    display                : flex;
    align-items            : center;
    border-top-left-radius : 12px;
    border-top-right-radius: 12px;
    background-color       : rgba(199, 112, 255, 1);
    color                  : white;
    transition             : ease 0.3s;
}

.crtl_form_headtag_split_l {
    position       : relative;
    display        : flex;
    flex-direction : row;
    justify-content: flex-start;
    align-items    : center;
}

.crtl_form_headtag_split_r {
    position       : relative;
    display        : flex;
    flex-direction : row;
    justify-content: flex-end;
    align-items    : center;
}

.crtl_form_headtag[rtl="true"] {
    background: linear-gradient(240deg, #3D7FFF, transparent);
}

.crtl_form_headtag_icon {
    position           : relative;
    min-width          : 20px;
    width              : 20px;
    min-height         : 20px;
    height             : 20px;
    background-size    : contain;
    background-position: center;
    background-repeat  : no-repeat;
}

.crtl_form_headtag_space {
    position  : relative;
    width     : 5px;
    min-width : 5px;
    height    : 5px;
    min-height: 5px;
}

.crtl_form_headtag_headline {
    position : relative;
    color    : white;
    font-size: 14px;
}

.crtl_form_headtag_loading {
    position     : relative;
    min-width    : 28px;
    width        : 28px;
    min-height   : 28px;
    height       : 28px;
    border-radius: 100%;
    animation    : an_rotation 0.5s 0s linear infinite forwards;
    display      : none;
}

.crtl_form_headtag_loading_circle {
    fill             : transparent;
    stroke           : white;
    stroke-width     : 2;
    stroke-dasharray : 4000;
    stroke-dashoffset: 3936;
    animation        : an_rotation_loading 1.5s 0s linear infinite alternate;
}

.controls_expander_header_space {
    position  : relative;
    min-width : 10px;
    min-height: 10px;
    width     : 10px;
    height    : 10px;
}

@media(hover:hover) and (pointer:fine) {
    .controls_expander_headline:hover {
        text-decoration: underline;
    }

    .controls_expander[expanded="false"] .controls_expander_bt {
        transform: translate(0, 0) scaleY(1);
    }

    .controls_expander[expanded="true"] .controls_expander_bt {
        transform: translate(0, 0) scaleY(-1);
    }

    .controls_expander[expanded="false"] .controls_expander_bt:hover {
        transform: translate(0, 2px) scaleY(1);
    }

    .controls_expander[expanded="true"] .controls_expander_bt:hover {
        transform: translate(0, -2px) scaleY(-1);
    }
}

@media (max-width:1044px) and (min-width:0),
(max-width:1044px) and (min-device-width:0) {
    .crtl_layout_warpper {
        width: calc(100% - 40px);
    }
}

@media (max-width:650px) and (min-width:0),
(max-width:650px) and (min-device-width:0) {
    .crtl_layout_warpper {
        width: calc(100% - 20px);
    }
}