.iowd-hidden {
    display: none !important;
}
.iowd-main-container p {
    margin: 0;
}
.iowd-main-container * {
    color: #323A45;
    font-family: Open Sans, sans-serif;
}
.iowd-main-container {
    flex-direction: column;
    align-items: center;
}
.iowd-flex-center {
    display: flex;
    justify-content: center;
}
.iowd-flex-space-between {
    display: flex;
    justify-content: space-between;
}
.iowd-flex-end {
    align-items: flex-end;
}
.iowd-white-with-borders {
    width: 714px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #323A4533;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 20px;
}
.iowd-status-label {
    box-sizing: border-box;
    padding: 5px 6px 5px 30px;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}
.iowd-status-green-mark {
    background: #22B3390D 0% 0% no-repeat padding-box;
    border: 1px solid #22B33919;
    background-image: url('../img/check_solid.svg');
    background-position: 8px center;
}
.iowd-status-red-cross {
    background: #FD3C310D 0% 0% no-repeat padding-box;
    border: 1px solid #FD3C311A;
    background-image: url('../img/error_solid.svg');
    background-position: 8px center;
}
.iowd-text-bold {
    font-weight: bold;
}
.iowd-text-semi-bold {
    font-weight: 600;
}
.iowd-main-title {
    font-size: 16px;
    line-height: 26px;
}
.iowd-main-large-description {
    font-size: 16px;
    line-height: 26px;
}
.iowd-main-medium-description {
    font-size: 14px;
    line-height: 20px;
}
.iowd-main-small-description {
    font-size: 12px;
    line-height: 18px;
}
.iowd-grey-bg-section {
    background-color: #F9F9F9;
    padding: 20px;
    box-sizing: border-box;
}
.iowd-button {
    border-radius: 6px;
    width: 210px;
    display: inline-block;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
}
.iowd-button-green-transparent {
    border: 1px solid #22B339;
    color: #22B339;
}
.iowd-button-green-transparent:hover {
    color: #22B339;
}
.iowd-button-green-transparent.iowd-loading-button {
    background-color: #22B339;
    color: #ffffff00;
}
.iowd-button-green-transparent:not(.iowd-disable-button):hover {
    background-color: #22B339;
    color: #ffffff;
}
.iowd-button-green-fillcolor {
    background-color: #22B339;
    color: #ffffff;
}
.iowd-button-green-fillcolor:hover {
    opacity: 70%;
    color: #ffffff;
}
.iowd-button-green-fillcolor.iowd-loading-button:hover {
    opacity: 70%;
    color: #ffffff00;
}
.iowd-install-optimize.iowd-loading-button {
    color: #ffffff00;
}
.iowd-install-optimize.iowd-loading-button span:before {
    left: -60px;
}

.iowd-loader {
    position: relative;
    width: 14px;
    height: 14px;
    margin-top: -14px;
}
.iowd-button .iowd-loader:before {
    content: '';
    position: absolute;
    background: transparent url(../img/loader.svg) 0% 0% no-repeat padding-box;
    animation: rotation 1s infinite linear;
    width: 14px;
    height: 14px;
    top: 3px;
    left: -30px;
}
.iowd-button.iowd-disable-button {
    opacity: 50%;
}
.iowd-button.iowd-button-hover-style:not(.iowd-disable-button) {
    opacity: 50%;
    background-color: #22B339;
    color: #ffffff;           
}
.iowd-text-align-right {
    text-align: right;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}