/*///////////////////////////////////*/

.su-wrapper{
	 min-width: 300px;
}

.su-wrapper .su-page-header{margin-bottom:15px;margin-right:10px;border-bottom:1px solid #ccc}

.su-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}
.su-hidden {
  visibility: hidden;
  opacity: 0;
  height: 10px;
  transition: visibility 0s 0.2s, opacity 0.2s linear;
}

.su-input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.su-input-group>.form-control, .su-input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.su-input-group>.form-control:focus, .su-input-group>.form-select:focus {
    z-index: 3;
}
.su-input-group .btn {
    position: relative;
    z-index: 2;
}
.su-input-group .btn:focus {
    z-index: 3;
}
.su-input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.su-input-group-lg>.btn, .su-input-group-lg>.form-control, .su-input-group-lg>.form-select, .su-input-group-lg>.su-input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem;
}
.su-input-group-sm>.btn, .su-input-group-sm>.form-control, .su-input-group-sm>.form-select, .su-input-group-sm>.su-input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}
.su-input-group-lg>.form-select, .su-input-group-sm>.form-select {
    padding-right: 3rem;
}
.su-input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .su-input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.su-input-group.has-validation>.dropdown-toggle:nth-last-child(n+4), .su-input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.su-input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#chart {
	max-width: 100%;
	margin: 35px auto;
}

.kita {
		text-decoration: none;
}
.kita a:hover{
    text-decoration: underline;
}
	.container {
	    position: relative;
	}
	#loader-wrapper {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 1000;
	    background-color: rgba(0, 0, 0, 0.3);
	}
	#loader {
	    display: block;
	    position: relative;
	    left: 50%;
	    top: 50%;
	    width: 100px;
	    height: 100px;
	    margin: -50px 0 0 -50px;
	    border-radius: 50%;
	    border: 3px solid transparent;
	    border-top-color: #3498db;
	    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
	}

	#loader:before {
	    content: "";
	    position: absolute;
	    top: 5px;
	    left: 5px;
	    right: 5px;
	    bottom: 5px;
	    border-radius: 50%;
	    border: 3px solid transparent;
	    border-top-color: #e74c3c;
	    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	      animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
	}

	#loader:after {
	    content: "";
	    position: absolute;
	    top: 15px;
	    left: 15px;
	    right: 15px;
	    bottom: 15px;
	    border-radius: 50%;
	    border: 3px solid transparent;
	    border-top-color: #f9c922;
	    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
	}

	@-webkit-keyframes spin {
	    0%   {
	        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
	        -ms-transform: rotate(0deg);  /* IE 9 */
	        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	    }
	    100% {
	        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
	        -ms-transform: rotate(360deg);  /* IE 9 */
	        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	    }
	}
	@keyframes spin {
	    0%   {
	        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
	        -ms-transform: rotate(0deg);  /* IE 9 */
	        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	    }
	    100% {
	        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
	        -ms-transform: rotate(360deg);  /* IE 9 */
	        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	    }
	}

	.su_tip{
		background-color: #263646;
		padding: 3px 7px;
		line-height: 17px;
		position: absolute;
		border-radius: 4px;
		z-index: 100;
		color: #fff;
		font-size: 12px;
		font-family: Arial;
		animation-name: tip;
		animation-duration: .6s;
		animation-fill-mode: both;
		}

	#copied_tip{
		animation-name: come_and_leave;
		animation-duration: 1s;
		animation-fill-mode: both;
		margin-top: -11px;
		margin-left: 20px;
		}

	.text-line{font-size: 14px}


/* CSS used here will be applied after bootstrap.css */
.sortable-placeholder {
    margin-left: 0 !important;
    border: 1px solid #ccc;
    background-color: yellow;
    -webkit-box-shadow: 0px 0px 10px #888;
    -moz-box-shadow: 0px 0px 10px #888;
    box-shadow: 0px 0px 10px #888;
}
.su_limit_info{
    margin-top: -0.7rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d;
}
