.dspNone { display: none !important; }
form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

form.col {
    flex-direction: column;
}

.m-05 {margin: 5px; }
.mt-05 {margin-top: 5px; }
.mr-05 {margin-right: 5px; }
.mb-05 {margin-bottom: 5px; }
.ml-05 {margin-left: 5px; }

.mt-1 {margin-top: 10px; }
.mt-2 {margin-top: 20px; }
.mt-3 {margin-top: 30px; }
.mt-4 {margin-top: 40px; }
.mt-5 {margin-top: 50px; }

.mb-1 {margin-bottom: 10px; }
.mb-2 {margin-bottom: 20px; }
.mb-3 {margin-bottom: 30px; }
.mb-4 {margin-bottom: 40px; }
.mb-5 {margin-bottom: 50px; }

.ml-1 {margin-left: 10px; }
.ml-2 {margin-left: 20px; }
.ml-3 {margin-left: 30px; }
.ml-4 {margin-left: 40px; }
.ml-5 {margin-left: 50px; }

.mr-1 {margin-right: 10px; }
.mr-2 {margin-right: 20px; }
.mr-3 {margin-right: 30px; }
.mr-4 {margin-right: 40px; }
.mr-5 {margin-right: 50px; }

.mh-1 {margin-right: 10px; margin-left: 10px; }
.mh-2 {margin-right: 20px; margin-left: 20px;  }
.mh-3 {margin-right: 30px; margin-left: 30px;  }
.mh-4 {margin-right: 40px; margin-left: 40px;  }
.mh-5 {margin-right: 50px; margin-left: 50px;  }

.p-1 {padding: 10px; }
.p-2 {padding: 20px; }
.p-3 {padding: 30px; }
.p-4 {padding: 40px; }
.p-5 {padding: 50px; }

.pt-1 {padding-top: 10px; }
.pt-2 {padding-top: 20px; }
.pt-3 {padding-top: 30px; }
.pt-4 {padding-top: 40px; }
.pt-5 {padding-top: 50px; }

.pb-1 {padding-bottom: 10px; }
.pb-2 {padding-bottom: 20px; }
.pb-3 {padding-bottom: 30px; }
.pb-4 {padding-bottom: 40px; }
.pb-5 {padding-bottom: 50px; }

.pl-1 {padding-left: 10px; }
.pl-2 {padding-left: 20px; }
.pl-3 {padding-left: 30px; }
.pl-4 {padding-left: 40px; }
.pl-5 {padding-left: 50px; }

.pr-1 {padding-right: 10px; }
.pr-2 {padding-right: 20px; }
.pr-3 {padding-right: 30px; }
.pr-4 {padding-right: 40px; }
.pr-5 {padding-right: 50px; }

.ph-1 {padding-right: 10px; padding-left: 10px; }
.ph-2 {padding-right: 20px; padding-left: 20px;  }
.ph-3 {padding-right: 30px; padding-left: 30px;  }
.ph-4 {padding-right: 40px; padding-left: 40px;  }
.ph-5 {padding-right: 50px; padding-left: 50px;  }

.col-1 { width: calc(100% / 12); }
.col-2 { width: calc((100% / 12) * 2); }
.col-3 { width: calc((100% / 12) * 3); }
.col-4 { width: calc((100% / 12) * 4); }
.col-5 { width: calc((100% / 12) * 5); }
.col-6 { width: calc((100% / 12) * 6); }
.col-7 { width: calc((100% / 12) * 7); }
.col-8 { width: calc((100% / 12) * 8); }
.col-9 { width: calc((100% / 12) * 9); }
.col-10 { width: calc((100% / 12) * 10); }
.col-11 { width: calc((100% / 12) * 11); }
.col-12 { width: 100%; }


#errorContainer { padding: 20px; background-color: #f5f5f5; border-radius: 7px; margin-bottom: 20px; }
#errorContainer ul { list-style: none; margin: 0; padding: 0; }
.login-box { 
    width: 350px;
    padding: 30px;
    box-shadow: 0 0 5px #d4d4d4;
}

.login-logo {
    width: 60px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 5px #d4d4d4;
    margin: 20px 0 40px 0;
}

.field-group { display: flex; flex-direction: row; flex-wrap: wrap; flex: 1; }
.field-group.col { flex-direction: column; }
.field-row { display: flex; flex-direction: column; margin-bottom: 20px; padding: 0 10px; position: relative; }
.field-row.row { flex-direction: row; align-items: center; margin: 0; }
.field-row label { padding-left: 3px; font-family: SemiBold; display: flex; margin-bottom: 7px; color: #43526c; }
.field-row.row label { width: 130px; margin-bottom: 0; }
.field-row.row label.has-el { margin-top: 12px; }
.field-row.row p { margin: 0; }
.field-row input[type="text"],
    .field-row input[type="password"],
        .field-row select,
            .field-row textarea {
    padding: 8px 15px;
    font-family: Regular;
    font-size: 14px;
    border: #d4d4d4 1px solid;
    border-radius: 3px;    
}

.field-row input[type="file"] {
    padding: 8px 15px;
    font-family: Regular;
    font-size: 14px;
    border: #d4d4d4 1px solid;
    background-color: #ffffff;
    border-radius: 3px;    
}

.field-row input[type="text"].readonly,
    .field-row input[type="password"].readonly,
        .field-row select.readonly,
            .field-row textarea.readonly {
    background-color: #f5f5f5;
    border: #f5f5f5 1px solid;
    color: #666666;
}

.field-row span.error {
    display: none;
}

/* horizontal form */
form.horizontal .field-row { flex-direction: row; align-items: center; }
form.horizontal .field-row input[type="text"],
    form.horizontal .field-row input[type="password"],
        form.horizontal .field-row select,
            form.horizontal .field-row textarea {
    padding: 8px 12px;
    flex: 1;
}
form.horizontal .field-row label { margin: 0 15px 0 0; }
form.horizontal.label-100 label { width: 100px; }
form.horizontal.label-120 label { width: 120px; }
form.horizontal.label-140 label { width: 140px; }
form.horizontal.label-160 label { width: 160px; }
form.horizontal.label-180 label { width: 180px; }
form.horizontal.label-200 label { width: 200px; }

/* form error */
form .field-row.error span.error {
    display: block;
    color: #cc0001;
    font-size: 12px;
    padding: 5px 0 0 5px;
}
form.horizontal .field-row.error span.error {
    position: absolute;
    right: 15px;
    bottom: -20px;
    font-size: 10px;
}
.field-row.error input[type="text"],
    .field-row.error input[type="file"],
        .field-row.error input[type="password"],
            .field-row.error select,
                .field-row.error textarea {
    border: #cc0001 1px solid;
    outline-color: #cc0001;
}

.button-set { display: flex; flex-direction: column; }
.button-set.row { flex-direction: row; }
.button-set.row-right { flex-direction: row-reverse; }

button, a.btn-link { text-decoration:  none; cursor: pointer; font-size: 14px; padding: 14px 20px; border: transparent 0px solid; color: #ffffff; background-color: #0052cc; border-radius: 4px; }
button.thin, a.btn-link.thin { padding: 12px 20px; }
button.min, a.btn-link.min { padding: 10px 20px; font-size: 12px; font-family: semiBold; }
button.fancybox-button:hover { background-color: transparent; }
button:hover, a.btn-link:hover { background-color: #0043a8; }
button.red, a.btn-link.red { background-color: #b42e2e; }
button.red:hover, a.btn-link.red:hover { background-color: #912424; }
button.green, a.btn-link.green { background-color: #009900; }
button.green:hover, a.btn-link.green:hover { background-color: #067506; }

button.dark, a.btn-link.dark { background-color: #242424; }
button.dark:hover, a.btn-link.dark:hover { background-color: #666666; }

button.tgray, a.btn-link.tgray { background-color: #f5f5f5; color: #0052cc; }
button.tgray:hover, a.btn-link.tgray:hover { background-color: #f2f2f2; color: #242424; }
button.tgray.active, a.btn-link.tgray.active { background-color: #e8e8e8; color: #242424; }
button[disabled], button[disabled]:hover { background-color: #e8e8e8; color: #9498a0; }

/* checkbox */
label.checkbox {
    display: block;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: Regular;
}

label.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

label.checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 3px;
    background-color: #f5f5f5;
    border: #d4d4d4 1px solid;
}

/* On mouse-over, add a grey background color */
label.checkbox:hover input ~ .checkmark {
    background-color: #e8e8e8;
}

/* When the checkbox is checked, add a blue background */
label.checkbox input:checked ~ .checkmark {
    background-color: #0052cc;
    border: #d4d4d4 0px solid;
}

/* Create the checkmark/indicator (hidden when not checked) */
label.checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
label.checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
label.checkbox .checkmark:after {
    left: 6px;
    top: 3px;
    width: 2px;
    height: 6px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* option ===================================== */
label.option {
    display: block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: Regular;
}

/* Hide the browser's default radio button */
label.option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
label.option .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #f5f5f5;
    border: #d4d4d4 1px solid;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
label.option:hover input ~ .checkmark {
    background-color: #e8e8e8;
}

/* When the radio button is checked, add a blue background */
label.option input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
label.option .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
label.option input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
label.option .checkmark:after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    border: #d4d4d4 0px solid;
}

/* custom check add to v */
.v-custom-check {
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #707070;
    margin: 0 8px 8px 0;
    display: inline-block;
    padding: 4px 8px;
    cursor: pointer;
}

.v-custom-check.active {
    background-color: #009900;
    color: #fff;
}

/* MATERIAL PROGRESS */
.u-progress { top: 0; position: absolute; z-index: 10000; height: 1px; display: block; width: 100%; background-color: #acece6; border-radius: 2px; background-clip: padding-box; overflow: hidden; }
.u-progress .determinate { position: absolute; background-color: inherit; top: 0; bottom: 0; background-color: #26a69a; transition: width .3s linear; }
.u-progress .indeterminate:before { content: ''; position: absolute; background-color: inherit; top: 0; left: 0; bottom: 0; will-change: left, right; -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;  }
.u-progress .indeterminate:after { content: ''; position: absolute; background-color: inherit; top: 0; left: 0; bottom: 0; will-change: left, right; -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; -webkit-animation-delay: 1.15s; animation-delay: 1.15s;  }
@-webkit-keyframes indeterminate { 0% { left: -35%; right: 100%; } 60% { left: 100%; right: -90%; } 100% { left: 100%; right: -90%; } }
@keyframes indeterminate { 0% { left: -35%; right: 100%; } 60% { left: 100%; right: -90%; } 100% { left: 100%; right: -90%; } }
@-webkit-keyframes indeterminate-short { 0% { left: -200%; right: 100%; } 60% { left: 107%; right: -8%; } 100% { left: 107%; right: -8%; } }
@keyframes indeterminate-short { 0% { left: -200%; right: 100%; } 60% { left: 107%; right: -8%; } 100% { left: 107%; right: -8%; } }
/* customize progress */
.u-progress.px1 { height: 1px; }
.u-progress.px2 { height: 2px; }
.u-progress.px3 { height: 3px; }
.u-progress.px4 { height: 4px; }
.u-progress.px5 { height: 5px; }

.u-progress .indeterminate { background-color: #26a69a;  }
.u-progress.progress-red { background-color: #cc0001; }
.u-progress.progress-red .indeterminate { background-color: #ffdddd;  }
.u-progress.progress-orange { background-color: #ff5800; }
.u-progress.progress-orange .indeterminate { background-color: #ffd1b8;  }

/* TABLET DIKEY */
@media only screen and (width : 768px) {
    .p-col-12 { width: 100%; }
    .tbl-ml-05 {margin-left: 5px;}
}

/* TABLET YATAY */
@media only screen and (width : 1024px) {
    .p-col-12 { width: 100%; }
    .tbl-ml-05 {margin-left: 5px !important;}
}

/* TELEFON */
@media only screen and (max-width : 760px) {
    .p-col-1 { width: calc(100% / 12); }
    .p-col-2 { width: calc((100% / 12) * 2); }
    .p-col-3 { width: calc((100% / 12) * 3); }
    .p-col-4 { width: calc((100% / 12) * 4); }
    .p-col-5 { width: calc((100% / 12) * 5); }
    .p-col-6 { width: calc((100% / 12) * 6); }
    .p-col-7 { width: calc((100% / 12) * 7); }
    .p-col-8 { width: calc((100% / 12) * 8); }
    .p-col-9 { width: calc((100% / 12) * 9); }
    .p-col-10 { width: calc((100% / 12) * 10); }
    .p-col-11 { width: calc((100% / 12) * 11); }
    .p-col-12 { width: 100%; }

    .mbl-col { flex-direction: column; }
    .mbl-ml-0 {margin-left:0px;}
    .mbl-mt-1 {margin-top:10px;}

    .field-row.row { flex-direction: column; margin-bottom: 20px; }
    .field-row.row label { width: 100%; margin-bottom: 5px; }
    .field-row.row button { margin: 10px 0 0 0 !important; width: 100%; }
    .card.flex { flex-direction: column; }
    .w130 { width: 100% !important; }
}