@media only screen and (max-width: 2400px) {
    .item {
        width: 33.333% !important;
    }
}
@media only screen and (max-width: 1600px) {
    .item {
        width: 50% !important;
    }
}
@media only screen and (max-width: 800px) {
    .item {
        width: 100% !important;
    }
}

@media screen and (max-width: 1000px) {
    .hidden {
        display: none;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
	height: 100%;
}
  
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #333!important;
	height: 100%;
}

a {
    text-decoration: none;
  }

ol, ul, h1 {
    margin: 0;
    padding: 0;
    list-style: none;
  }

.float-right {
    float: right;
    padding: 0 10px;
}

hr {
    margin-top: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
  }

/* form style */
.form-group {
    margin-bottom: 1rem;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group textarea {
    height: 120px;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem;
}

.form-check-label {
    margin-bottom: 0;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

[type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.input-group {
    /* position: relative; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group-prepend {
    margin-right: -1px;
}

.p-0 {
    padding: 0 !important;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

.input-group>.form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.text-center {
    margin-top: 30px;
    text-align: center !important;
}
.text-center p {
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin: 8px auto;
}
.rounded-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50% !important;
    border: 2px solid #d8d8d8;
}

.dropdown-divider {
    height: 0;
    margin: 1rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: flex;
    width: 100%;
    height: 2.5rem;
    padding: .25rem 2.5rem;
    clear: both;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: inherit;
    white-space: nowrap;
    border: 0;
    align-items: center;
}

.col-md-3 a:hover {
    background-color: rgb(140, 69, 69);
    border-radius: 0.65rem;
}

/*  paginate style  */

.paginate {
	text-align: center;
	margin: 0;
	line-height: 4rem;
}

.paginate a {
	font-size: 16px;
	color: #fff;
	padding: 6px 12px;
}

 .paginate a:hover {
	background-color: red;
	border-radius: 5px;
}

.paginate a.active {
	background-color: #4CAF50;
	border-radius: 5px;
}