.hidden {
    display: none !important;
}
article .block.infobox.instruction.trusted-offer {

}
article .block.infobox.trusted-offer .title {
    margin-bottom: 20px;
    color: #000000;
    font-size: 14px;
    line-height: 1.4em;
    font-size: bold;
    padding: 4px 20px;
}
article .block.infobox.instruction.product-pc-repair.trusted-offer .downloadbtn-wrapper {
    text-align: center;
}
article .block.infobox.instruction.product-pc-repair.trusted-offer a.button.download {
    background: #40C100;
    box-shadow: 0px 4px 8px rgba(176, 176, 176, 0.5);
    border-radius: 5px;
    padding: 14px 36px;
    display: inline-block;
    position: relative;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s;
    margin: 0 auto;
    width: auto;
}
article .block.infobox.instruction.product-pc-repair.trusted-offer a.button.download:hover {
    background-color: #339900;
}
article .block.infobox.instruction.product-pc-repair.trusted-offer a.button.download:focus {
    background-color: #3BB300;
}
article .block.infobox.instruction.product-pc-repair .special-offer {
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    margin: -10px 0;
    text-transform: uppercase;
}
.trusted-offer .product-os-info {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    margin: 20px 0;
    color: #000000;
}
.trusted-offer .links-block {
    margin: 10px 0px;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}
.trusted-offer .offer-steps .links-block {
    text-align: left;
    padding: 0;
}
.trusted-offer .steps-wrapper .links-block {
    text-align: inherit;
    margin-top: 4px;
    margin-bottom: 15px;
}
.trusted-offer .links-block .links-block-intro {
    display: block;
}
.trusted-offer .links-block a:hover {
    text-decoration: none;
    color: #0645ad;
}
.trusted-offer .trusted-block {
    margin: 20px 0;
}
.trusted-offer .trusted-block-text {
    background-image: url('./trusted-offer/img/shield.svg');
    background-repeat: no-repeat;
    background-position: left center;
    padding: 3px 0 2px 30px;
    font-size: 14px;
    line-height: 1.4em;
    color: #333333;
    font-weight: bold;
}
.trusted-offer .trusted-block-text a {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}
.trusted-offer .trusted-block-text img {
    display: block;
    width: 12px;
    height: auto;
}

/*** screenshots **/

.screenshots-wrapper {
    display: block;
    position: relative;
    margin-bottom: 20px;
}
.screenshots-wrapper .item-main {
    margin-bottom: 10px;
}
.screenshots-wrapper .items {
    display: flex;
    /*justify-content: space-between;*/
    position: relative;
    /*width: 100%;*/
    margin-left: -5px;
    margin-right: -5px;
}
.screenshots-wrapper .item {
    flex: 0 1 calc(33% - 5px);
    position: relative;
    margin: 0 5px;
}
.screenshots-wrapper a {
    display: block;
    position: relative;
    outline: none;
    text-decoration: none;
}
.screenshots-wrapper img {
    display: block;
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 1;
}
.screenshots-wrapper a:hover {
    text-decoration: none;
}
.screenshots-wrapper a:before {
    content: '';
    display: block;
    background-image: url('./trusted-offer/img/search.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    opacity: 0;
    transition: opacity 0.3s;
}
.screenshots-wrapper a:hover:before {
    content: '';
    display: block;
    background-image: url('./trusted-offer/img/search.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 2;
}

/*** modal ***/
.modal-wrapper {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.modal-wrapper.visible {
    display: flex;
    opacity: 1;
    visibility: visible;
}
.modal-inner {
    position: relative;
    width: 100%;
}
.modal-content {
    position: relative;
    width: 100%;
    display: flex;
    max-width: 836px;
    margin-left: auto;
    margin-right: auto;
}
.modal-close {
    width: 24px;
    height: 24px;
    display: block;
    outline: none;
    background-image: url('./trusted-offer/img/close.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 10px;
    right: 10px;
    transform-origin: 50% 50%;
    transition: transform 0.5s;
}
.modal-close:hover {
    transform: rotate(90deg) scale(1.2);
}
.trusted-content {
    display: flex;
    max-width: 836px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 2px;
    padding: 30px 10px;
    position: relative;
    width: 100%;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
}
.trusted-content p {
    margin: 10px 0;
}
.trusted-content .col {
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    position: relative;
}
.trusted-content .col-1 {
    flex: 0 1 27.34%;
    align-self: center;
    max-width: 27.34%;
}
.trusted-content .col-2 {

}
.win-os {
    display: flex;
    justify-content: space-between;
    margin: 20px 8px 40px 3px;
}
.win-os-title {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 15px;
}
.win-os img {
    height: 100px;
}
/*.logo-ms-silver {
    width: 231px;
    height: 56px;
    background: url(/includes/img/logo-ms-silver.svg);
    cursor: default;
    display: block;
    margin: 0 auto 20px;
}*/
.logo-ms-silver {
    width: 231px;
    height: 56px;
    background: url(/includes/img/logo-ms-silver.svg);
    cursor: default;
    display: block;
    margin: 0 auto 20px;
}
.win-os-title {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 15px;
}
.win-os {
    display: flex;
    justify-content: space-between;
    margin: 20px 8px 40px 3px;
}
.win-os img {
    height: 100px;
}
