
.display-none {
    display: none !important;
}

.text-align-center {
    text-align: center;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-shadow-green-dot {
    text-shadow: 5px 5px 8px #71b871;
}

.text-shadow-none {
    text-shadow: none;
}

.text-deco-none {
    text-decoration: none;
}

.text-stroke-white-1 {
    /*-webkit-text-stroke: 1px white;*/
    /*text-stroke: 1px white;*/
    text-shadow: 0 1px white, 1px 0 white, -1px 0 white, 0 -1px white;
}

.text-stroke-black-1 {
    /*-webkit-text-stroke: 1px black;*/
    /*text-stroke: 1px black;*/
    text-shadow: 0 1px black, 1px 0 black, -1px 0 black, 0 -1px black;
}

.letter-space-5 {
    letter-spacing: 5px;
}

.width-100 {
    width: 100%;
}

.width-100px {
    width: 100px;
}

.width-85 {
    width: 85%;
}

.width-80 {
    width: 80%;
}

.width-49 {
    width: 49%;
}

.width-45 {
    width: 45%;
}

.width-40 {
    width: 40%;
}

.width-30 {
    width: 30%;
}

.width-25 {
    width: 25%;
}

.height-0 {
    height: 0;
}

.height-100 {
    height: 100%;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-bottom-35 {
    margin-bottom: 35px;
}

.margin-left-50 {
    margin-left: 50px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-center {
    margin: 0 auto;
}

.color-gold {
    color: #ffe2c0;
}

.color-white {
    color: white;
}

.color-brown {
    color: saddlebrown;
}

.color-title-orange {
    color: #ff841e;
}

.color-green {
    color: #407b0d;
}

.color-red {
    color: red;
}


.bg-color-earth {
    background-color: #EDCF70;
}

.bg-color-green {
    background-color: #407b0d;
}

.font-size-21 {
    font-size: 21px;
}

.font-size-12 {
    font-size: 12px;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.position-fixed {
    position: fixed;
}

.overflow-hidden {
    overflow: hidden;
}

.rotate-y-180 {
    transform: rotateY(180deg);
}

.display-flex {
    display: flex;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-justify-center {
    justify-content: center;
}

.flex-align-center {
    align-items: center;
}

.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    clear:both;
    content: "";
    display: block;
}