﻿/* common border radius */
/* disable text selection */
section.gt-block.cooking-temperatures {
  overflow: hidden;
  background: #F8F8F8;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  border-radius: 4rem;
}
section.gt-block.cooking-temperatures .block-content {
  min-height: 43rem;
  display: flex;
}
section.gt-block.cooking-temperatures .block-content.no-image {
  min-height: 0;
  display: block;
}
section.gt-block.cooking-temperatures > .note {
  padding: 3rem 4rem;
  background: #603D00;
  color: white;
  font-size: 1.5rem;
  line-height: 2.3rem;
  font-weight: 500;
}
section.gt-block.cooking-temperatures .content {
  width: 56rem;
  padding: 3rem 4rem;
  position: relative;
}
section.gt-block.cooking-temperatures .content.full-width {
  width: auto;
}
section.gt-block.cooking-temperatures .content .web-section-btn {
  margin: 0 0 3rem 0;
}
section.gt-block.cooking-temperatures .content .text h3 {
  margin: 0 0 1rem 0;
}
section.gt-block.cooking-temperatures .content .text ul {
  list-style: none;
  letter-spacing: -0.02em;
}
section.gt-block.cooking-temperatures .content .text ul li strong {
  color: #FF0000;
}
section.gt-block.cooking-temperatures .content .text ul li span {
  font-weight: bold;
}
section.gt-block.cooking-temperatures .content .text ul li em {
  font-style: normal;
}
section.gt-block.cooking-temperatures .content .buttons {
  padding: 2rem 0 0 0;
  display: flex;
  justify-content: space-between;
}
section.gt-block.cooking-temperatures .content .buttons .button {
  flex-grow: 1;
}
section.gt-block.cooking-temperatures .content .buttons .icon-btn {
  margin: 0 0 0 1rem;
}
section.gt-block.cooking-temperatures .image {
  position: relative;
  display: block;
  overflow: hidden;
  flex-grow: 1;
}
section.gt-block.cooking-temperatures .image span {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /*.transition();

            &:hover
            {
                .transform(scale(1.1));
            }*/
}
@media screen and (max-width: 1000px) {
  section.gt-block.cooking-temperatures .block-content {
    min-height: 0;
    display: block;
  }
  section.gt-block.cooking-temperatures .content {
    width: auto;
  }
  section.gt-block.cooking-temperatures .image {
    height: 33rem;
  }
}
@media screen and (max-width: 500px) {
  section.gt-block.cooking-temperatures {
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
  }
  section.gt-block.cooking-temperatures > .note {
    padding: 2rem;
  }
  section.gt-block.cooking-temperatures .content {
    padding: 2rem;
  }
  section.gt-block.cooking-temperatures .content .web-section-btn {
    margin: 0 0 2rem 0;
  }
  section.gt-block.cooking-temperatures .content .buttons {
    display: block;
    text-align: center;
  }
  section.gt-block.cooking-temperatures .content .buttons .btn {
    display: block;
  }
  section.gt-block.cooking-temperatures .content .buttons .icon-btn {
    margin: 1rem 0.5rem 0;
  }
  section.gt-block.cooking-temperatures .image {
    height: 20rem;
  }
}